pub struct PreloadStats {
pub bins_loaded: u64,
pub lns_loaded: u64,
pub elapsed_ms: u64,
}Expand description
Statistics returned from a database preload operation.
Fields§
§bins_loaded: u64Number of BIN (bottom internal) nodes loaded.
lns_loaded: u64Number of leaf nodes (LNs) loaded.
elapsed_ms: u64Total elapsed time in milliseconds.
Trait Implementations§
Source§impl Clone for PreloadStats
impl Clone for PreloadStats
Source§fn clone(&self) -> PreloadStats
fn clone(&self) -> PreloadStats
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 PreloadStats
impl Debug for PreloadStats
Source§impl Default for PreloadStats
impl Default for PreloadStats
Source§fn default() -> PreloadStats
fn default() -> PreloadStats
Returns the “default value” for a type. Read more
impl Eq for PreloadStats
Source§impl PartialEq for PreloadStats
impl PartialEq for PreloadStats
Source§fn eq(&self, other: &PreloadStats) -> bool
fn eq(&self, other: &PreloadStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PreloadStats
Auto Trait Implementations§
impl Freeze for PreloadStats
impl RefUnwindSafe for PreloadStats
impl Send for PreloadStats
impl Sync for PreloadStats
impl Unpin for PreloadStats
impl UnsafeUnpin for PreloadStats
impl UnwindSafe for PreloadStats
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.