#[repr(C)]pub struct b3TreeStats {
pub nodeVisits: c_int,
pub leafVisits: c_int,
}Expand description
These are performance results returned by dynamic tree queries.
Fields§
§nodeVisits: c_intNumber of internal nodes visited during the query
leafVisits: c_intNumber of leaf nodes visited during the query
Trait Implementations§
Source§impl Clone for b3TreeStats
impl Clone for b3TreeStats
Source§fn clone(&self) -> b3TreeStats
fn clone(&self) -> b3TreeStats
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 moreimpl Copy for b3TreeStats
Auto Trait Implementations§
impl Freeze for b3TreeStats
impl RefUnwindSafe for b3TreeStats
impl Send for b3TreeStats
impl Sync for b3TreeStats
impl Unpin for b3TreeStats
impl UnsafeUnpin for b3TreeStats
impl UnwindSafe for b3TreeStats
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