[−][src]Enum parity_multihash::Hash
List of types currently supported in the multihash spec.
Not all hash types are supported by this library.
Variants
SHA1SHA-1 (20-byte hash size)
SHA2256SHA-256 (32-byte hash size)
SHA2512SHA-512 (64-byte hash size)
SHA3512SHA3-512 (64-byte hash size)
SHA3384SHA3-384 (48-byte hash size)
SHA3256SHA3-256 (32-byte hash size)
SHA3224SHA3-224 (28-byte hash size)
Keccak224Keccak-224 (28-byte hash size)
Keccak256Keccak-256 (32-byte hash size)
Keccak384Keccak-384 (48-byte hash size)
Keccak512Keccak-512 (64-byte hash size)
Blake2b512BLAKE2b-512 (64-byte hash size)
Blake2b256Encoding unsupported
Blake2s256BLAKE2s-256 (32-byte hash size)
Blake2s128Encoding unsupported
Methods
impl Hash[src]
pub fn code(&self) -> u16[src]
Get the corresponding hash code.
pub fn size(&self) -> u8[src]
Get the hash length in bytes.
pub fn from_code(code: u16) -> Option<Hash>[src]
Returns the algorithm corresponding to a code, or None if no algorithm is matching.
Trait Implementations
impl Copy for Hash[src]
impl Clone for Hash[src]
fn clone(&self) -> Hash[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<Hash> for Hash[src]
fn eq(&self, other: &Hash) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for Hash[src]
impl Debug for Hash[src]
impl Hash for Hash[src]
Auto Trait Implementations
impl Sync for Hash
impl Unpin for Hash
impl Send for Hash
impl UnwindSafe for Hash
impl RefUnwindSafe for Hash
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self