H256

Struct H256 

Source
#[repr(transparent)]
pub struct H256(pub [u8; 32]);
Expand description

A SHA256 hash.

Tuple Fields§

§0: [u8; 32]

Implementations§

Source§

impl H256

Source

pub fn new(raw: [u8; 32]) -> H256

returns a new instance of the hash without any adjustments

Source

pub fn from_digest<D>(digest: D) -> H256
where D: AsRef<[u8]>,

returns a new instance of the hash from a digest

Source

pub fn random() -> H256

generate a randome hash

Source

pub const fn get(&self) -> &[u8; 32]

returns the hash as a byte array

Source

pub fn get_mut(&mut self) -> &mut [u8; 32]

returns a mutable reference to the hash as a byte array

Source

pub fn set(&mut self, value: [u8; 32]) -> &mut H256

copies the hash into the provided buffer

Source

pub fn replace(&mut self, value: &[u8; 32]) -> [u8; 32]

replace and return the current value with another

Source

pub fn swap(&mut self, other: &mut H256)

swap the current value with another

Source

pub const fn as_slice(&self) -> &[u8]

returns the hash as a byte array

Source

pub fn as_slice_mut(&mut self) -> &mut [u8]

returns a mutable reference to the hash as a byte array

Source

pub fn copy_from_slice(&mut self, value: &[u8]) -> &mut H256

copies the hash into the provided buffer

Source

pub fn to_vec(&self) -> Vec<u8>

returns a Vec<u8> representation of the hash

Source

pub fn concat<Rhs>(&self, other: Rhs) -> H256
where H256: Concat<Rhs, Output = H256>,

this method generically concatenates two hashes based upon the given type and its corresponding implementations(s)

Trait Implementations§

Source§

impl Add<f64> for H256

Source§

type Output = H256

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f64) -> H256

Performs the + operation. Read more
Source§

impl Add for H256

Source§

type Output = H256

The resulting type after applying the + operator.
Source§

fn add(self, rhs: H256) -> H256

Performs the + operation. Read more
Source§

impl AddAssign<f64> for H256

Source§

fn add_assign(&mut self, rhs: f64)

Performs the += operation. Read more
Source§

impl AddAssign for H256

Source§

fn add_assign(&mut self, rhs: H256)

Performs the += operation. Read more
Source§

impl AsMut<[u8]> for H256

Source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsMut<[u8; 32]> for H256

Source§

fn as_mut(&mut self) -> &mut [u8; 32]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsRef<[u8]> for H256

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<[u8; 32]> for H256

Source§

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

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for H256

Source§

fn clone(&self) -> H256

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for H256

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for H256

Source§

fn default() -> H256

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

impl Deref for H256

Source§

type Target = [u8; 32]

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<H256 as Deref>::Target

Dereferences the value.
Source§

impl DerefMut for H256

Source§

fn deref_mut(&mut self) -> &mut <H256 as Deref>::Target

Mutably dereferences the value.
Source§

impl<'de> Deserialize<'de> for H256
where H256: Default,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<H256, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for H256

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Div<f64> for H256

Source§

type Output = H256

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> H256

Performs the / operation. Read more
Source§

impl DivAssign<f64> for H256

Source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
Source§

impl<T> From<&T> for H256
where T: AsRef<[u8]>,

Source§

fn from(data: &T) -> H256

Converts to this type from the input type.
Source§

impl From<[u8; 32]> for H256

Source§

fn from(input: [u8; 32]) -> H256

Converts to this type from the input type.
Source§

impl From<GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>> for H256

Source§

fn from( data: GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>, ) -> H256

Converts to this type from the input type.
Source§

impl From<H160> for H256

Source§

fn from(input: H160) -> H256

Converts to this type from the input type.
Source§

impl From<H256> for [u8; 32]

Source§

fn from(input: H256) -> [u8; 32]

Converts to this type from the input type.
Source§

impl From<H256> for GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

Source§

fn from( input: H256, ) -> GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

Converts to this type from the input type.
Source§

impl From<H256> for H160

Source§

fn from(input: H256) -> H160

Converts to this type from the input type.
Source§

impl From<H256> for Vec<u8>

Source§

fn from(input: H256) -> Vec<u8>

Converts to this type from the input type.
Source§

impl From<Vec<u8>> for H256

Source§

fn from(input: Vec<u8>) -> H256

Converts to this type from the input type.
Source§

impl FromIterator<u8> for H256

Source§

fn from_iter<T>(iter: T) -> H256
where T: IntoIterator<Item = u8>,

Creates a value from an iterator. Read more
Source§

impl Hash for H256

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl Index<Range<usize>> for H256

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: Range<usize>) -> &<H256 as Index<Range<usize>>>::Output

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

impl Index<usize> for H256

Source§

type Output = u8

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<H256 as Index<usize>>::Output

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

impl IndexMut<Range<usize>> for H256

Source§

fn index_mut( &mut self, index: Range<usize>, ) -> &mut <H256 as Index<Range<usize>>>::Output

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

impl IndexMut<usize> for H256

Source§

fn index_mut(&mut self, index: usize) -> &mut <H256 as Index<usize>>::Output

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

impl IntoIterator for H256

Source§

type Item = u8

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<u8, 32>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <H256 as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl Mul<f64> for H256

Source§

type Output = H256

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> H256

Performs the * operation. Read more
Source§

impl MulAssign<f64> for H256

Source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
Source§

impl Ord for H256

Source§

fn cmp(&self, other: &H256) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for H256

Source§

fn eq(&self, other: &H256) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for H256

Source§

fn partial_cmp(&self, other: &H256) -> Option<Ordering>

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

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for H256

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl SizedHash for H256

Source§

const N: usize = 32usize

Source§

fn size(&self) -> usize

Source§

impl Copy for H256

Source§

impl Eq for H256

Source§

impl RawHash for H256

Source§

impl StructuralPartialEq for H256

Auto Trait Implementations§

§

impl Freeze for H256

§

impl RefUnwindSafe for H256

§

impl Send for H256

§

impl Sync for H256

§

impl Unpin for H256

§

impl UnwindSafe for H256

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<S, T> AsSlice<T> for S
where S: AsRef<[T]>,

Source§

fn __private__(&self) -> Seal

Source§

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

Source§

impl<S, T> AsSliceMut<T> for S
where S: AsMut<[T]>,

Source§

fn __private__(&self) -> Seal

Source§

fn as_mut_slice(&mut self) -> &mut [T]

converts the type into a mutable slice of its elements.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DType for T
where T: 'static,

Source§

fn __private__(&self) -> Seal

Source§

fn type_id(&self) -> TypeId

Source§

fn type_name(&self) -> &'static str

Source§

impl<T> Displayable for T
where T: Debug + Display,

Source§

fn __private__(&self) -> Seal

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<K, S> Identity<K> for S
where S: Borrow<K>, K: Identifier,

Source§

type Item = S

Source§

fn get(&self) -> &<S as Identity<K>>::Item

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IsType for T
where T: 'static,

Source§

fn __private__(&self) -> Seal

Source§

fn is<T>(&self) -> bool
where T: 'static, Self: 'static,

Source§

impl<Q> RawState for Q
where Q: Send + Sync + Debug,

Source§

fn __private__(&self) -> Seal

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T> TypeOf for T
where T: 'static,

Source§

fn __private__(&self) -> Seal

Source§

fn of<U>() -> bool
where U: 'static,

Source§

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

Source§

fn vzip(self) -> V

Source§

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