Enum cow_dedupe::cli::HashFn
source · pub enum HashFn {
B3_128,
B3_160,
B3_256,
B3_512,
B3_1024,
B3_2048,
Sha256,
Sha512,
Sha3_256,
Sha3_512,
}Variants§
Trait Implementations§
impl Copy for HashFn
Auto Trait Implementations§
impl RefUnwindSafe for HashFn
impl Send for HashFn
impl Sync for HashFn
impl Unpin for HashFn
impl UnwindSafe for HashFn
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> 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>where
F: FnOnce(&Self) -> bool,
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,
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