pub struct MapCatalogVerification {
pub head: MapVersionId,
pub version_count: usize,
pub reachable_nodes: usize,
pub reachable_bytes: usize,
}Expand description
Successful integrity audit of one complete managed-map catalog.
Fields§
§head: MapVersionIdCurrent head identifier.
version_count: usizeNumber of immutable catalog entries.
reachable_nodes: usizeUnique nodes reachable from all retained versions.
reachable_bytes: usizeSerialized bytes reachable from all retained versions.
Trait Implementations§
Source§impl Clone for MapCatalogVerification
impl Clone for MapCatalogVerification
Source§fn clone(&self) -> MapCatalogVerification
fn clone(&self) -> MapCatalogVerification
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 MapCatalogVerification
impl Debug for MapCatalogVerification
impl Eq for MapCatalogVerification
Source§impl PartialEq for MapCatalogVerification
impl PartialEq for MapCatalogVerification
impl StructuralPartialEq for MapCatalogVerification
Auto Trait Implementations§
impl Freeze for MapCatalogVerification
impl RefUnwindSafe for MapCatalogVerification
impl Send for MapCatalogVerification
impl Sync for MapCatalogVerification
impl Unpin for MapCatalogVerification
impl UnsafeUnpin for MapCatalogVerification
impl UnwindSafe for MapCatalogVerification
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more