pub struct Stats {
pub tables: usize,
pub total_records: usize,
pub file_size_bytes: u64,
pub path: String,
pub mvcc_active_versions: usize,
pub page_size: usize,
pub sdk_version: String,
}Expand description
Database statistics (expanded for Phase 5)
Fields§
§tables: usize§total_records: usize§file_size_bytes: u64§path: String§mvcc_active_versions: usizeNumber of active MVCC versions in memory
page_size: usizeDatabase page size in bytes (typically 4096)
sdk_version: StringSDK version string
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 UnsafeUnpin 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