pub struct Options<F> {
pub verify_mode: Mode,
pub traversal: Algorithm,
pub thread_limit: Option<usize>,
pub make_pack_lookup_cache: F,
}
Expand description
Additional options to define how the integrity should be verified.
Fields
verify_mode: Mode
The thoroughness of the verification
traversal: Algorithm
The way to traverse packs
thread_limit: Option<usize>
The amount of theads to use of Some(N)
, with None|Some(0)
using all available cores are used.
make_pack_lookup_cache: F
A function to create a pack cache
Trait Implementations
Auto Trait Implementations
impl<F> RefUnwindSafe for Options<F> where
F: RefUnwindSafe,
impl<F> Send for Options<F> where
F: Send,
impl<F> Sync for Options<F> where
F: Sync,
impl<F> Unpin for Options<F> where
F: Unpin,
impl<F> UnwindSafe for Options<F> where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more