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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#[derive(
    Eq,
    PartialOrd,
    Ord,
    ::serde::Serialize,
    ::serde::Deserialize,
    ::proptest_derive::Arbitrary
)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GlobalId {
    #[prost(oneof = "global_id::Value", tags = "1, 2, 3, 4")]
    pub value: ::core::option::Option<global_id::Value>,
}
/// Nested message and enum types in `GlobalId`.
pub mod global_id {
    #[derive(
        Eq,
        PartialOrd,
        Ord,
        ::serde::Serialize,
        ::serde::Deserialize,
        ::proptest_derive::Arbitrary
    )]
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Value {
        #[prost(uint64, tag = "1")]
        System(u64),
        #[prost(uint64, tag = "2")]
        User(u64),
        #[prost(uint64, tag = "3")]
        Transient(u64),
        #[prost(message, tag = "4")]
        Explain(()),
    }
}
/// Opaque timestamp type that is specific to Materialize.
#[derive(
    Eq,
    PartialOrd,
    Ord,
    ::serde::Serialize,
    ::serde::Deserialize,
    ::proptest_derive::Arbitrary
)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Timestamp {
    #[prost(uint64, tag = "1")]
    pub internal: u64,
}
#[derive(
    Eq,
    PartialOrd,
    Ord,
    ::serde::Serialize,
    ::serde::Deserialize,
    ::proptest_derive::Arbitrary
)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TimestampAntichain {
    #[prost(message, repeated, tag = "1")]
    pub elements: ::prost::alloc::vec::Vec<Timestamp>,
}
#[derive(
    Eq,
    PartialOrd,
    Ord,
    ::serde::Serialize,
    ::serde::Deserialize,
    ::proptest_derive::Arbitrary
)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DurableCollectionMetadata {
    /// StringWrapper remap_shard = 1;
    #[prost(string, tag = "2")]
    pub data_shard: ::prost::alloc::string::String,
}