pub enum VerifyMode {
Quick,
Full,
}Expand description
How thorough the integrity check should be.
Variants§
Quick
Quick: counts and basic metadata only.
Full
Full: includes FTS, JSON/enum decoding, blobs, and SQLite integrity_check.
Trait Implementations§
Source§impl Clone for VerifyMode
impl Clone for VerifyMode
Source§fn clone(&self) -> VerifyMode
fn clone(&self) -> VerifyMode
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 VerifyMode
impl Debug for VerifyMode
Source§impl PartialEq for VerifyMode
impl PartialEq for VerifyMode
Source§fn eq(&self, other: &VerifyMode) -> bool
fn eq(&self, other: &VerifyMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VerifyMode
impl Eq for VerifyMode
impl StructuralPartialEq for VerifyMode
Auto Trait Implementations§
impl Freeze for VerifyMode
impl RefUnwindSafe for VerifyMode
impl Send for VerifyMode
impl Sync for VerifyMode
impl Unpin for VerifyMode
impl UnsafeUnpin for VerifyMode
impl UnwindSafe for VerifyMode
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