jj_lib/protos/
git_store.rs

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