jj_lib/protos/
git_store.rs

1// This file is @generated by prost-build.
2#[derive(Clone, PartialEq, ::prost::Message)]
3pub struct Commit {
4    #[prost(bytes = "vec", repeated, tag = "2")]
5    pub predecessors: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
6    #[prost(bytes = "vec", tag = "4")]
7    pub change_id: ::prost::alloc::vec::Vec<u8>,
8    /// Alternating positive and negative terms. Set only for conflicts.
9    /// Resolved trees are stored in the git commit
10    #[prost(bytes = "vec", repeated, tag = "1")]
11    pub root_tree: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
12    /// TODO(#1624): delete when we assume that all commits use this format
13    #[prost(bool, tag = "10")]
14    pub uses_tree_conflict_format: bool,
15    #[deprecated]
16    #[prost(bool, tag = "8")]
17    pub is_open: bool,
18    #[deprecated]
19    #[prost(bool, tag = "9")]
20    pub is_pruned: bool,
21}