jj_lib/protos/
default_index.rs

1// This file is @generated by prost-build.
2/// Control file to link operation to index segments.
3#[derive(Clone, PartialEq, ::prost::Message)]
4pub struct SegmentControl {
5    /// Hash (or file name) of the commit index segment.
6    #[prost(bytes = "vec", tag = "1")]
7    pub commit_segment_id: ::prost::alloc::vec::Vec<u8>,
8    /// First commit stored in the changed-path index segments. Unset if
9    /// changed-path index is disabled.
10    #[prost(uint32, optional, tag = "2")]
11    pub changed_path_start_commit_pos: ::core::option::Option<u32>,
12    /// Hashes (or file names) of the changed-path index segments.
13    #[prost(bytes = "vec", repeated, tag = "3")]
14    pub changed_path_segment_ids: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
15}