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
/// Source-agnostic timestamp for source messages.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoSourceTimestamp {
    /// Materialize offset of the message (1-indexed).
    #[prost(int64, tag="3")]
    pub mz_offset: i64,
    /// The partition from which this message originates.
    #[prost(oneof="proto_source_timestamp::PartitionId", tags="1, 2")]
    pub partition_id: ::core::option::Option<proto_source_timestamp::PartitionId>,
}
/// Nested message and enum types in `ProtoSourceTimestamp`.
pub mod proto_source_timestamp {
    /// The partition from which this message originates.
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum PartitionId {
        /// Kafka partition ID.
        #[prost(int32, tag="1")]
        Kafka(i32),
        /// No partition ID.
        #[prost(message, tag="2")]
        None(()),
    }
}
/// A timestamp assigned to a source message.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoAssignedTimestamp {
    /// The timestamp.
    #[prost(uint64, tag="1")]
    pub ts: u64,
}