pub struct Stats {
pub leaf: u64,
pub tree_stats: Vec<TreeStats>,
}Expand description
The different stats of an arroy database.
Fields§
§leaf: u64Number of leaf node or item vectors.
tree_stats: Vec<TreeStats>The stats of each individual tree.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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