pub enum XxhashMode {
Off,
Full,
Partial(PartialOptions),
}Variants§
Off
Full
Partial(PartialOptions)
Head/tail digest for large-file tiering (same hex field as full xxhash on FileRecord).
Trait Implementations§
Source§impl Clone for XxhashMode
impl Clone for XxhashMode
Source§fn clone(&self) -> XxhashMode
fn clone(&self) -> XxhashMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for XxhashMode
impl RefUnwindSafe for XxhashMode
impl Send for XxhashMode
impl Sync for XxhashMode
impl Unpin for XxhashMode
impl UnsafeUnpin for XxhashMode
impl UnwindSafe for XxhashMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more