pub struct StoreDiagnostics {
pub journal_mode: String,
pub foreign_keys_enabled: bool,
pub fts5_index_available: bool,
}Expand description
Source-free runtime capabilities observed from one open store connection.
Fields§
§journal_mode: StringActive SQLite journal mode.
foreign_keys_enabled: boolWhether foreign-key enforcement is active.
fts5_index_available: boolWhether the managed FTS5 node index exists.
Trait Implementations§
Source§impl Clone for StoreDiagnostics
impl Clone for StoreDiagnostics
Source§fn clone(&self) -> StoreDiagnostics
fn clone(&self) -> StoreDiagnostics
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 moreSource§impl Debug for StoreDiagnostics
impl Debug for StoreDiagnostics
impl Eq for StoreDiagnostics
Source§impl PartialEq for StoreDiagnostics
impl PartialEq for StoreDiagnostics
impl StructuralPartialEq for StoreDiagnostics
Auto Trait Implementations§
impl Freeze for StoreDiagnostics
impl RefUnwindSafe for StoreDiagnostics
impl Send for StoreDiagnostics
impl Sync for StoreDiagnostics
impl Unpin for StoreDiagnostics
impl UnsafeUnpin for StoreDiagnostics
impl UnwindSafe for StoreDiagnostics
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