#[non_exhaustive]pub enum HashAlgorithm {
Show 17 variants
MD5,
SHA1,
SHA224,
SHA256,
SHA384,
SHA512,
Murmur3_128,
Murmur3_32,
BLAKE2s128,
BLAKE2s160,
BLAKE2s224,
BLAKE2s256,
BLAKE2b160,
BLAKE2b224,
BLAKE2b256,
BLAKE2b384,
BLAKE2b512,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MD5
SHA1
SHA224
SHA256
SHA384
SHA512
Murmur3_128
Murmur3_32
BLAKE2s128
BLAKE2s160
BLAKE2s224
BLAKE2s256
BLAKE2b160
BLAKE2b224
BLAKE2b256
BLAKE2b384
BLAKE2b512
Implementations§
Trait Implementations§
Source§impl Clone for HashAlgorithm
impl Clone for HashAlgorithm
Source§fn clone(&self) -> HashAlgorithm
fn clone(&self) -> HashAlgorithm
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 HashAlgorithm
impl Debug for HashAlgorithm
Source§impl PartialEq for HashAlgorithm
impl PartialEq for HashAlgorithm
Source§impl TryFrom<&str> for HashAlgorithm
impl TryFrom<&str> for HashAlgorithm
Source§impl TryFrom<HashAlgorithm> for Hasher
Available on crate feature alloc only.
impl TryFrom<HashAlgorithm> for Hasher
Available on crate feature
alloc only.Source§impl TryFrom<HashAlgorithm> for HasherCounting
Available on crate feature alloc only.
impl TryFrom<HashAlgorithm> for HasherCounting
Available on crate feature
alloc only.impl Copy for HashAlgorithm
impl Eq for HashAlgorithm
impl StructuralPartialEq for HashAlgorithm
Auto Trait Implementations§
impl Freeze for HashAlgorithm
impl RefUnwindSafe for HashAlgorithm
impl Send for HashAlgorithm
impl Sync for HashAlgorithm
impl Unpin for HashAlgorithm
impl UnwindSafe for HashAlgorithm
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