pub struct DbInfo {
pub path: String,
pub file_size: u64,
pub engine: String,
pub engine_version: String,
pub page_count: Option<u64>,
pub page_size: Option<u64>,
pub table_count: usize,
}Fields§
§path: String§file_size: u64§engine: String§engine_version: String§page_count: Option<u64>§page_size: Option<u64>§table_count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for DbInfo
impl RefUnwindSafe for DbInfo
impl Send for DbInfo
impl Sync for DbInfo
impl Unpin for DbInfo
impl UnsafeUnpin for DbInfo
impl UnwindSafe for DbInfo
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