Struct diem_sdk::crypto::HashValue[][src]

pub struct HashValue { /* fields omitted */ }
Expand description

Output value of our hash function. Intentionally opaque for safety and modularity.

Implementations

impl HashValue[src]

pub const LENGTH: usize[src]

The length of the hash in bytes.

pub const LENGTH_IN_BITS: usize[src]

The length of the hash in bits.

pub fn new(hash: [u8; 32]) -> HashValue[src]

Create a new HashValue from a byte array.

pub fn from_slice<T>(bytes: T) -> Result<HashValue, HashValueParseError> where
    T: AsRef<[u8]>, 
[src]

Create from a slice (e.g. retrieved from storage).

pub fn to_vec(&self) -> Vec<u8, Global>[src]

Dumps into a vector.

pub const fn zero() -> HashValue[src]

Creates a zero-initialized instance.

pub fn random() -> HashValue[src]

Create a cryptographically random instance.

pub fn random_with_rng<R>(rng: &mut R) -> HashValue where
    R: Rng
[src]

Creates a random instance with given rng. Useful in unit tests.

pub fn sha3_256_of(buffer: &[u8]) -> HashValue[src]

Convenience function that computes a HashValue internally equal to the sha3_256 of a byte buffer. It will handle hasher creation, data feeding and finalization.

Note this will not result in the <T as CryptoHash>::hash() for any reasonable struct T, as this computes a sha3 without any ornaments.

pub fn bit(&self, index: usize) -> bool[src]

Returns the index-th bit in the bytes.

pub fn iter_bits(&self) -> HashValueBitIterator<'_>

Notable traits for HashValueBitIterator<'a>

impl<'a> Iterator for HashValueBitIterator<'a> type Item = bool;
[src]

Returns a HashValueBitIterator over all the bits that represent this HashValue.

pub fn from_bit_iter(
    iter: impl ExactSizeIterator<Item = bool>
) -> Result<HashValue, HashValueParseError>
[src]

Constructs a HashValue from an iterator of bits.

pub fn common_prefix_bits_len(&self, other: HashValue) -> usize[src]

Returns the length of common prefix of self and other in bits.

pub fn to_hex(&self) -> String[src]

Full hex representation of a given hash value.

pub fn from_hex<T>(hex: T) -> Result<HashValue, HashValueParseError> where
    T: AsRef<[u8]>, 
[src]

Parse a given hex string to a hash value.

Methods from Deref<Target = [u8; 32]>

pub fn as_slice(&self) -> &[T]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

🔬 This is a nightly-only experimental API. (array_methods)

Returns a slice containing the entire array. Equivalent to &s[..].

pub fn each_ref(&self) -> [&T; N][src]

🔬 This is a nightly-only experimental API. (array_methods)

Borrows each element and returns an array of references with the same size as self.

Example

#![feature(array_methods)]

let floats = [3.1, 2.7, -1.0];
let float_refs: [&f64; 3] = floats.each_ref();
assert_eq!(float_refs, [&3.1, &2.7, &-1.0]);

This method is particularly useful if combined with other methods, like map. This way, you can avoid moving the original array if its elements are not Copy.

#![feature(array_methods, array_map)]

let strings = ["Ferris".to_string(), "♥".to_string(), "Rust".to_string()];
let is_ascii = strings.each_ref().map(|s| s.is_ascii());
assert_eq!(is_ascii, [true, false, true]);

// We can still access the original array: it has not been moved.
assert_eq!(strings.len(), 3);

Trait Implementations

impl AsRef<[u8; 32]> for HashValue[src]

pub fn as_ref(&self) -> &[u8; 32][src]

Performs the conversion.

impl Binary for HashValue[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Clone for HashValue[src]

pub fn clone(&self) -> HashValue[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for HashValue[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl Default for HashValue[src]

pub fn default() -> HashValue[src]

Returns the “default value” for a type. Read more

impl Deref for HashValue[src]

type Target = [u8; 32]

The resulting type after dereferencing.

pub fn deref(&self) -> &<HashValue as Deref>::Target[src]

Dereferences the value.

impl<'de> Deserialize<'de> for HashValue[src]

pub fn deserialize<D>(
    deserializer: D
) -> Result<HashValue, <D as Deserializer<'de>>::Error> where
    D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Display for HashValue[src]

Will print shortened (4 bytes) hash

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl FromStr for HashValue[src]

type Err = HashValueParseError

The associated error which can be returned from parsing.

pub fn from_str(s: &str) -> Result<HashValue, HashValueParseError>[src]

Parses a string s to return a value of this type. Read more

impl Hash for HashValue[src]

pub fn hash<__H>(&self, state: &mut __H) where
    __H: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Index<usize> for HashValue[src]

type Output = u8

The returned type after indexing.

pub fn index(&self, s: usize) -> &u8[src]

Performs the indexing (container[index]) operation. Read more

impl LowerHex for HashValue[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

impl Ord for HashValue[src]

pub fn cmp(&self, other: &HashValue) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<HashValue> for HashValue[src]

pub fn eq(&self, other: &HashValue) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &HashValue) -> bool[src]

This method tests for !=.

impl PartialOrd<HashValue> for HashValue[src]

pub fn partial_cmp(&self, other: &HashValue) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Serialize for HashValue[src]

pub fn serialize<S>(
    &self,
    serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl Copy for HashValue[src]

impl Eq for HashValue[src]

impl StructuralEq for HashValue[src]

impl StructuralPartialEq for HashValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

pub fn equivalent(&self, key: &K) -> bool[src]

Compare self to key and return true if they are equal.

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> TestOnlyHash for T where
    T: Serialize + ?Sized
[src]

pub fn test_only_hash(&self) -> HashValue[src]

Generates a hash used only for tests.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]