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
#[allow(missing_docs)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoId {
    #[prost(oneof = "proto_id::Kind", tags = "1, 2")]
    pub kind: ::core::option::Option<proto_id::Kind>,
}
/// Nested message and enum types in `ProtoId`.
pub mod proto_id {
    #[allow(missing_docs)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        Global(::mz_repr::global_id::ProtoGlobalId),
        #[prost(message, tag = "2")]
        Local(super::ProtoLocalId),
    }
}
#[allow(missing_docs)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoLocalId {
    #[prost(uint64, tag = "1")]
    pub value: u64,
}
#[allow(missing_docs)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoPartitionId {
    #[prost(oneof = "proto_partition_id::Kind", tags = "1, 2")]
    pub kind: ::core::option::Option<proto_partition_id::Kind>,
}
/// Nested message and enum types in `ProtoPartitionId`.
pub mod proto_partition_id {
    #[allow(missing_docs)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(int32, tag = "1")]
        Kafka(i32),
        #[prost(message, tag = "2")]
        None(()),
    }
}