pub struct EngramStats {
pub global_version: u64,
pub root_version: u64,
pub chunk_store: CodebookStats,
pub corrections: CorrectionStats,
pub manifest: ManifestStats,
pub transactions: TransactionStats,
}Expand description
Comprehensive engram statistics
Fields§
§global_version: u64§root_version: u64§chunk_store: CodebookStats§corrections: CorrectionStats§manifest: ManifestStats§transactions: TransactionStatsTrait Implementations§
Source§impl Clone for EngramStats
impl Clone for EngramStats
Source§fn clone(&self) -> EngramStats
fn clone(&self) -> EngramStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EngramStats
impl RefUnwindSafe for EngramStats
impl Send for EngramStats
impl Sync for EngramStats
impl Unpin for EngramStats
impl UnwindSafe for EngramStats
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