pub struct CountStat {
pub nodes: usize,
pub values: usize,
}
Expand description
How many nodes and values are in the tree. See Stats for a brief description.
Fields§
§nodes: usize
§values: usize
Trait Implementations§
impl StructuralPartialEq for CountStat
Auto Trait Implementations§
impl Freeze for CountStat
impl RefUnwindSafe for CountStat
impl Send for CountStat
impl Sync for CountStat
impl Unpin for CountStat
impl UnwindSafe for CountStat
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