pub struct CanonicalSpliceStats {
pub entries_scanned: usize,
pub nodes_read: usize,
pub nodes_rebuilt: usize,
pub nodes_written: usize,
pub nodes_reused: usize,
pub levels_rebuilt: usize,
pub right_edge_rebuilt: bool,
pub root_changed: bool,
}Expand description
Observable logical and physical work performed by canonical_splice.
Fields§
§entries_scanned: usize§nodes_read: usize§nodes_rebuilt: usize§nodes_written: usize§nodes_reused: usize§levels_rebuilt: usize§right_edge_rebuilt: bool§root_changed: boolTrait Implementations§
Source§impl Clone for CanonicalSpliceStats
impl Clone for CanonicalSpliceStats
Source§fn clone(&self) -> CanonicalSpliceStats
fn clone(&self) -> CanonicalSpliceStats
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 CanonicalSpliceStats
impl Debug for CanonicalSpliceStats
Source§impl Default for CanonicalSpliceStats
impl Default for CanonicalSpliceStats
Source§fn default() -> CanonicalSpliceStats
fn default() -> CanonicalSpliceStats
Returns the “default value” for a type. Read more
impl Eq for CanonicalSpliceStats
Source§impl PartialEq for CanonicalSpliceStats
impl PartialEq for CanonicalSpliceStats
impl StructuralPartialEq for CanonicalSpliceStats
Auto Trait Implementations§
impl Freeze for CanonicalSpliceStats
impl RefUnwindSafe for CanonicalSpliceStats
impl Send for CanonicalSpliceStats
impl Sync for CanonicalSpliceStats
impl Unpin for CanonicalSpliceStats
impl UnsafeUnpin for CanonicalSpliceStats
impl UnwindSafe for CanonicalSpliceStats
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