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
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoThresholdPlan {
    #[prost(oneof = "proto_threshold_plan::Kind", tags = "1")]
    pub kind: ::core::option::Option<proto_threshold_plan::Kind>,
}
/// Nested message and enum types in `ProtoThresholdPlan`.
pub mod proto_threshold_plan {
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        Basic(super::ProtoArrangement),
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoArrangement {
    #[prost(message, repeated, tag = "1")]
    pub all_columns: ::prost::alloc::vec::Vec<::mz_expr::ProtoMirScalarExpr>,
    #[prost(message, repeated, tag = "2")]
    pub permutation: ::prost::alloc::vec::Vec<
        proto_arrangement::ProtoArrangementPermutation,
    >,
    #[prost(uint64, repeated, tag = "3")]
    pub thinning: ::prost::alloc::vec::Vec<u64>,
}
/// Nested message and enum types in `ProtoArrangement`.
pub mod proto_arrangement {
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct ProtoArrangementPermutation {
        #[prost(uint64, tag = "1")]
        pub key: u64,
        #[prost(uint64, tag = "2")]
        pub val: u64,
    }
}