pub struct CheckIntegrityOpts {
pub quick: bool,
pub full: bool,
pub round_trip: bool,
}Expand description
Doctor check-integrity invocation flags. quick and round_trip
are accepted in 0.6.0 but treated as default; only full activates
PRAGMA integrity_check. Per dev/design/recovery.md § Doctor-only
flags.
Fields§
§quick: bool§full: bool§round_trip: boolTrait Implementations§
Source§impl Clone for CheckIntegrityOpts
impl Clone for CheckIntegrityOpts
Source§fn clone(&self) -> CheckIntegrityOpts
fn clone(&self) -> CheckIntegrityOpts
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 moreimpl Copy for CheckIntegrityOpts
Source§impl Debug for CheckIntegrityOpts
impl Debug for CheckIntegrityOpts
Source§impl Default for CheckIntegrityOpts
impl Default for CheckIntegrityOpts
Source§fn default() -> CheckIntegrityOpts
fn default() -> CheckIntegrityOpts
Returns the “default value” for a type. Read more
impl Eq for CheckIntegrityOpts
Source§impl PartialEq for CheckIntegrityOpts
impl PartialEq for CheckIntegrityOpts
impl StructuralPartialEq for CheckIntegrityOpts
Auto Trait Implementations§
impl Freeze for CheckIntegrityOpts
impl RefUnwindSafe for CheckIntegrityOpts
impl Send for CheckIntegrityOpts
impl Sync for CheckIntegrityOpts
impl Unpin for CheckIntegrityOpts
impl UnsafeUnpin for CheckIntegrityOpts
impl UnwindSafe for CheckIntegrityOpts
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