jj-lib 0.40.0

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