Struct parity_db::CheckOptions
source · pub struct CheckOptions {
pub column: Option<u8>,
pub from: Option<u64>,
pub bound: Option<u64>,
pub display: CheckDisplay,
pub fast: bool,
pub validate_free_refs: bool,
}Expand description
Options for producing a database dump.
Fields§
§column: Option<u8>Only process this column. If this is None all columns will be processed.
from: Option<u64>Start with this index.
bound: Option<u64>End with this index.
display: CheckDisplayVerbosity.
fast: boolOrdered validation.
validate_free_refs: boolMake sure free lists are correct.
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CheckOptions
impl Send for CheckOptions
impl Sync for CheckOptions
impl Unpin for CheckOptions
impl UnwindSafe for CheckOptions
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