pub struct DbStats {
pub tree_depth: u16,
pub entry_count: u64,
pub total_pages: u32,
pub high_water_mark: u32,
pub merkle_root: [u8; 28],
}Expand description
Database statistics read from the current commit slot.
Fields§
§tree_depth: u16§entry_count: u64§total_pages: u32§high_water_mark: u32§merkle_root: [u8; 28]Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbStats
impl RefUnwindSafe for DbStats
impl Send for DbStats
impl Sync for DbStats
impl Unpin for DbStats
impl UnsafeUnpin for DbStats
impl UnwindSafe for DbStats
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