H160

Struct H160 

Source
#[repr(transparent)]
pub struct H160(pub [u8; 20]);
Expand description

A SHA160 hash type.

Tuple Fields§

§0: [u8; 20]

Implementations§

Source§

impl H160

Source

pub fn from_digest(digest: impl AsRef<[u8]>) -> H160

Source

pub fn random() -> H160

Source

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

returns the hash as a slice

Source

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

returns a mutable reference to the hash as a slice

Source

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

copies the hash into the provided buffer

Source

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

returns the hash as a byte array

Source

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

returns a mutable reference to the hash as a byte array

Source

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

updates the hash with the provided value

Source

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

replace and return the current value with another

Source

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

swap the current value with another

Source

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

returns a Vec<u8> representation of the hash

Trait Implementations§

Source§

impl AsMut<[u8]> for H160

Source§

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

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

impl AsRef<[u8]> for H160

Source§

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

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

impl Borrow<[u8]> for H160

Source§

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

Immutably borrows from an owned value. Read more
Source§

impl BorrowMut<[u8]> for H160

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl Clone for H160

Source§

fn clone(&self) -> H160

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 H160

Source§

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

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

impl Default for H160

Source§

fn default() -> H160

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

impl Deref for H160

Source§

type Target = [u8; 20]

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl DerefMut for H160

Source§

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

Mutably dereferences the value.
Source§

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

Source§

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

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

impl Display for H160

Source§

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

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

impl<'a> From<&'a H160> for &'a [u8; 20]

Source§

fn from(value: &'a H160) -> &'a [u8; 20]

Converts to this type from the input type.
Source§

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

Source§

fn from(data: &T) -> H160

Converts to this type from the input type.
Source§

impl From<[u8; 20]> for H160

Source§

fn from(value: [u8; 20]) -> H160

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 H160

Source§

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

Converts to this type from the input type.
Source§

impl From<H160> for [u8; 20]

Source§

fn from(value: H160) -> [u8; 20]

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<H160> for Vec<u8>

Source§

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

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<Vec<u8>> for H160

Source§

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

Converts to this type from the input type.
Source§

impl FromIterator<u8> for H160

Source§

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

Creates a value from an iterator. Read more
Source§

impl Hash for H160

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 H160

Source§

type Output = [u8]

The returned type after indexing.
Source§

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

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

impl Index<usize> for H160

Source§

type Output = u8

The returned type after indexing.
Source§

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

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

impl IndexMut<Range<usize>> for H160

Source§

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

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

impl IndexMut<usize> for H160

Source§

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

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

impl IntoIterator for H160

Source§

type Item = u8

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<u8, 20>

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

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

Creates an iterator from a value. Read more
Source§

impl PartialEq for H160

Source§

fn eq(&self, other: &H160) -> 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 Serialize for H160

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 H160

Source§

const N: usize = 20usize

Source§

fn size(&self) -> usize

Source§

impl Copy for H160

Source§

impl Eq for H160

Source§

impl RawHash for H160

Source§

impl StructuralPartialEq for H160

Auto Trait Implementations§

§

impl Freeze for H160

§

impl RefUnwindSafe for H160

§

impl Send for H160

§

impl Sync for H160

§

impl Unpin for H160

§

impl UnwindSafe for H160

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>,