pub struct StorageDoctor {
pub database_path: PathBuf,
pub database_exists: bool,
pub wal_present: bool,
pub shm_present: bool,
pub journal_mode: String,
pub integrity_check: String,
pub wal_sidecars_normal: bool,
pub note: String,
}Fields§
§database_path: PathBuf§database_exists: bool§wal_present: bool§shm_present: bool§journal_mode: String§integrity_check: String§wal_sidecars_normal: bool§note: StringTrait Implementations§
Source§impl Clone for StorageDoctor
impl Clone for StorageDoctor
Source§fn clone(&self) -> StorageDoctor
fn clone(&self) -> StorageDoctor
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 moreAuto Trait Implementations§
impl Freeze for StorageDoctor
impl RefUnwindSafe for StorageDoctor
impl Send for StorageDoctor
impl Sync for StorageDoctor
impl Unpin for StorageDoctor
impl UnsafeUnpin for StorageDoctor
impl UnwindSafe for StorageDoctor
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