pub struct StoredSnapshotSummary {
pub snapshot_id: String,
pub node_count: usize,
pub edge_count: usize,
pub evidence_count: usize,
}Expand description
Counts and identity of a published snapshot.
Fields§
§snapshot_id: StringStable snapshot identifier.
node_count: usizeNumber of graph nodes.
edge_count: usizeNumber of graph edges.
evidence_count: usizeNumber of evidence records.
Trait Implementations§
Source§impl Clone for StoredSnapshotSummary
impl Clone for StoredSnapshotSummary
Source§fn clone(&self) -> StoredSnapshotSummary
fn clone(&self) -> StoredSnapshotSummary
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 StoredSnapshotSummary
impl Debug for StoredSnapshotSummary
impl Eq for StoredSnapshotSummary
Source§impl PartialEq for StoredSnapshotSummary
impl PartialEq for StoredSnapshotSummary
impl StructuralPartialEq for StoredSnapshotSummary
Auto Trait Implementations§
impl Freeze for StoredSnapshotSummary
impl RefUnwindSafe for StoredSnapshotSummary
impl Send for StoredSnapshotSummary
impl Sync for StoredSnapshotSummary
impl Unpin for StoredSnapshotSummary
impl UnsafeUnpin for StoredSnapshotSummary
impl UnwindSafe for StoredSnapshotSummary
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