H160

Struct H160 

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

A SHA160 hash type.

Tuple Fields§

§0: H160Hash

Implementations§

Source§

impl H160

Source

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

Source

pub fn b3(data: impl AsRef<[u8]>) -> Self

Source

pub fn random() -> Self

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 Self

copies the hash into the provided buffer

Source

pub const fn get(&self) -> &H160Hash

returns the hash as a byte array

Source

pub const fn get_mut(&mut self) -> &mut H160Hash

returns a mutable reference to the hash as a byte array

Source

pub fn set(&mut self, value: H160Hash) -> &mut Self

updates the hash with the provided value

Source

pub fn replace(&mut self, value: &H160Hash) -> H160Hash

replace and return the current value with another

Source

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

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 Concat for H160

Source§

type Output = H160

Source§

fn concat(&self, other: H160) -> Self

Concatenate two slices into a new vector.
Source§

impl Debug for H160

Source§

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

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) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for H160

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

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

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::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

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) -> Self

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]) -> Self

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: GenericHash) -> H160

Converts to this type from the input type.
Source§

impl From<H160> for [u8; 20]

Source§

fn from(value: H160) -> Self

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<Hash> for H160

Source§

fn from(input: Hash) -> 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: IntoIterator<Item = u8>>(iter: T) -> Self

Creates a value from an iterator. Read more
Source§

impl Hash for H160

Source§

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

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>) -> &Self::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) -> &Self::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 Self::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 Self::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) -> Self::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::Ok, __S::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<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> 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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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<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>,