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
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more