pub enum AnyBlake2b {
EdBlake2b,
ESBlake2bK,
ESBlake2b,
}Variants§
Trait Implementations§
Source§impl Clone for AnyBlake2b
impl Clone for AnyBlake2b
Source§fn clone(&self) -> AnyBlake2b
fn clone(&self) -> AnyBlake2b
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 moreSource§impl Debug for AnyBlake2b
impl Debug for AnyBlake2b
Source§impl From<AnyBlake2b> for Algorithm
impl From<AnyBlake2b> for Algorithm
Source§fn from(value: AnyBlake2b) -> Self
fn from(value: AnyBlake2b) -> Self
Converts to this type from the input type.
Source§impl From<AnyBlake2b> for AlgorithmInstance
impl From<AnyBlake2b> for AlgorithmInstance
Source§fn from(value: AnyBlake2b) -> Self
fn from(value: AnyBlake2b) -> Self
Converts to this type from the input type.
Source§impl Hash for AnyBlake2b
impl Hash for AnyBlake2b
Source§impl Ord for AnyBlake2b
impl Ord for AnyBlake2b
Source§fn cmp(&self, other: &AnyBlake2b) -> Ordering
fn cmp(&self, other: &AnyBlake2b) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AnyBlake2b
impl PartialEq for AnyBlake2b
Source§impl PartialOrd for AnyBlake2b
impl PartialOrd for AnyBlake2b
Source§impl SignatureAlgorithmInstance for AnyBlake2b
impl SignatureAlgorithmInstance for AnyBlake2b
type Algorithm = AnyBlake2b
fn algorithm(&self) -> AnyBlake2b
Source§impl SignatureAlgorithmType for AnyBlake2b
impl SignatureAlgorithmType for AnyBlake2b
type Instance = AnyBlake2b
Source§impl TryFrom<Algorithm> for AnyBlake2b
impl TryFrom<Algorithm> for AnyBlake2b
Source§impl TryFrom<AlgorithmInstance> for AnyBlake2b
impl TryFrom<AlgorithmInstance> for AnyBlake2b
Source§type Error = UnsupportedAlgorithm
type Error = UnsupportedAlgorithm
The type returned in the event of a conversion error.
impl Copy for AnyBlake2b
impl Eq for AnyBlake2b
impl StructuralPartialEq for AnyBlake2b
Auto Trait Implementations§
impl Freeze for AnyBlake2b
impl RefUnwindSafe for AnyBlake2b
impl Send for AnyBlake2b
impl Sync for AnyBlake2b
impl Unpin for AnyBlake2b
impl UnwindSafe for AnyBlake2b
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