pub struct TreeStats {
pub n_bins: u64,
pub n_ins: u64,
pub n_entries: u64,
pub height: u32,
}Expand description
Statistics collected by a full tree walk.
TreeWalkerStatsAccumulator.
Fields§
§n_bins: u64Number of BINs (bottom internal nodes).
n_ins: u64Number of upper INs.
n_entries: u64Total number of entries across all nodes.
height: u32Height of the tree (1 = root is a BIN, 2 = one level above BINs, …).
Trait Implementations§
impl Eq for TreeStats
impl StructuralPartialEq for TreeStats
Auto Trait Implementations§
impl Freeze for TreeStats
impl RefUnwindSafe for TreeStats
impl Send for TreeStats
impl Sync for TreeStats
impl Unpin for TreeStats
impl UnsafeUnpin for TreeStats
impl UnwindSafe for TreeStats
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.