pub struct RepoSummary {
pub field_seqs: BTreeMap<String, u64>,
pub ref_seqs: BTreeMap<RefName, u64>,
pub bundle_ids: Vec<ObjectBundleId>,
pub extension_seqs: BTreeMap<String, u64>,
}Expand description
Compact summary used for summarize_state -> get_state_delta.
Fields§
§field_seqs: BTreeMap<String, u64>update_seq of each owner-signed singleton field, if present.
ref_seqs: BTreeMap<RefName, u64>Per-ref update_seq.
bundle_ids: Vec<ObjectBundleId>Set of bundle ids the summarizer already has.
extension_seqs: BTreeMap<String, u64>Per-extension update_seq.
Trait Implementations§
Source§impl Clone for RepoSummary
impl Clone for RepoSummary
Source§fn clone(&self) -> RepoSummary
fn clone(&self) -> RepoSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RepoSummary
impl Debug for RepoSummary
Source§impl Default for RepoSummary
impl Default for RepoSummary
Source§fn default() -> RepoSummary
fn default() -> RepoSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepoSummary
impl<'de> Deserialize<'de> for RepoSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepoSummary
impl PartialEq for RepoSummary
Source§fn eq(&self, other: &RepoSummary) -> bool
fn eq(&self, other: &RepoSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RepoSummary
impl Serialize for RepoSummary
impl Eq for RepoSummary
impl StructuralPartialEq for RepoSummary
Auto Trait Implementations§
impl Freeze for RepoSummary
impl RefUnwindSafe for RepoSummary
impl Send for RepoSummary
impl Sync for RepoSummary
impl Unpin for RepoSummary
impl UnsafeUnpin for RepoSummary
impl UnwindSafe for RepoSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more