1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoDecodeError {
    #[prost(oneof="proto_decode_error::Kind", tags="1")]
    pub kind: ::core::option::Option<proto_decode_error::Kind>,
}
/// Nested message and enum types in `ProtoDecodeError`.
pub mod proto_decode_error {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(string, tag="1")]
        Text(::prost::alloc::string::String),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoSourceErrorDetails {
    #[prost(oneof="proto_source_error_details::Kind", tags="1, 2, 3, 4")]
    pub kind: ::core::option::Option<proto_source_error_details::Kind>,
}
/// Nested message and enum types in `ProtoSourceErrorDetails`.
pub mod proto_source_error_details {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(string, tag="1")]
        Initialization(::prost::alloc::string::String),
        #[prost(string, tag="2")]
        FileIo(::prost::alloc::string::String),
        #[prost(string, tag="3")]
        Persistence(::prost::alloc::string::String),
        #[prost(string, tag="4")]
        Other(::prost::alloc::string::String),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoSourceError {
    #[prost(message, optional, tag="1")]
    pub source_id: ::core::option::Option<::mz_repr::global_id::ProtoGlobalId>,
    #[prost(message, optional, tag="2")]
    pub error: ::core::option::Option<ProtoSourceErrorDetails>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoDataflowError {
    #[prost(oneof="proto_dataflow_error::Kind", tags="1, 2, 3")]
    pub kind: ::core::option::Option<proto_dataflow_error::Kind>,
}
/// Nested message and enum types in `ProtoDataflowError`.
pub mod proto_dataflow_error {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag="1")]
        DecodeError(super::ProtoDecodeError),
        #[prost(message, tag="2")]
        EvalError(::mz_expr::ProtoEvalError),
        #[prost(message, tag="3")]
        SourceError(super::ProtoSourceError),
    }
}