pub struct TreeStats {
pub node_visits: i32,
pub leaf_visits: i32,
}Expand description
These are performance results returned by dynamic tree queries. (b2TreeStats)
Fields§
§node_visits: i32Number of internal nodes visited during the query
leaf_visits: i32Number of leaf nodes visited during the query
Trait Implementations§
impl Copy for TreeStats
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