pub struct SpliceStats {
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 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 SpliceStats
impl Clone for SpliceStats
Source§fn clone(&self) -> SpliceStats
fn clone(&self) -> SpliceStats
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 SpliceStats
impl Debug for SpliceStats
Source§impl Default for SpliceStats
impl Default for SpliceStats
Source§fn default() -> SpliceStats
fn default() -> SpliceStats
Returns the “default value” for a type. Read more
impl Eq for SpliceStats
Source§impl PartialEq for SpliceStats
impl PartialEq for SpliceStats
impl StructuralPartialEq for SpliceStats
Auto Trait Implementations§
impl Freeze for SpliceStats
impl RefUnwindSafe for SpliceStats
impl Send for SpliceStats
impl Sync for SpliceStats
impl Unpin for SpliceStats
impl UnsafeUnpin for SpliceStats
impl UnwindSafe for SpliceStats
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