[]Struct web3::types::H160

#[repr(C)]pub struct H160(pub [u8; 20]);

Fixed-size uninterpreted hash type with 20 bytes (160 bits) size.

Implementations

impl H160

pub const fn repeat_byte(byte: u8) -> H160

Returns a new fixed hash where all bits are set to the given byte.

pub const fn zero() -> H160

Returns a new zero-initialized fixed hash.

pub const fn len_bytes() -> usize

Returns the size of this hash in bytes.

pub fn as_bytes(&self) -> &[u8]

Extracts a byte slice containing the entire fixed hash.

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

Extracts a mutable byte slice containing the entire fixed hash.

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

Extracts a reference to the byte array containing the entire fixed hash.

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

Extracts a reference to the byte array containing the entire fixed hash.

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

Returns the inner bytes array.

pub fn as_ptr(&self) -> *const u8

Returns a constant raw pointer to the value.

pub fn as_mut_ptr(&mut self) -> *mut u8

Returns a mutable raw pointer to the value.

pub fn assign_from_slice(&mut self, src: &[u8])

Assign the bytes from the byte slice src to self.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in self do not match.

pub fn from_slice(src: &[u8]) -> H160

Create a new fixed-hash from the given slice src.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in Self do not match.

pub fn covers(&self, b: &H160) -> bool

Returns true if all bits set in b are also set in self.

pub fn is_zero(&self) -> bool

Returns true if no bits are set.

impl H160

Utilities using the byteorder crate.

pub fn to_low_u64_be(&self) -> u64

Returns the lowest 8 bytes interpreted as big-endian.

Note

For hash type with less than 8 bytes the missing bytes are interpreted as being zero.

pub fn to_low_u64_le(&self) -> u64

Returns the lowest 8 bytes interpreted as little-endian.

Note

For hash type with less than 8 bytes the missing bytes are interpreted as being zero.

pub fn to_low_u64_ne(&self) -> u64

Returns the lowest 8 bytes interpreted as native-endian.

Note

For hash type with less than 8 bytes the missing bytes are interpreted as being zero.

pub fn from_low_u64_be(val: u64) -> H160

Creates a new hash type from the given u64 value.

Note

  • The given u64 value is interpreted as big endian.
  • Ignores the most significant bits of the given value if the hash type has less than 8 bytes.

pub fn from_low_u64_le(val: u64) -> H160

Creates a new hash type from the given u64 value.

Note

  • The given u64 value is interpreted as little endian.
  • Ignores the most significant bits of the given value if the hash type has less than 8 bytes.

pub fn from_low_u64_ne(val: u64) -> H160

Creates a new hash type from the given u64 value.

Note

  • The given u64 value is interpreted as native endian.
  • Ignores the most significant bits of the given value if the hash type has less than 8 bytes.

impl H160

Utilities using the rand crate.

pub fn randomize_using<R>(&mut self, rng: &mut R) where
    R: Rng + ?Sized

Assign self to a cryptographically random value using the given random number generator.

pub fn randomize(&mut self)

Assign self to a cryptographically random value.

pub fn random_using<R>(rng: &mut R) -> H160 where
    R: Rng + ?Sized

Create a new hash with cryptographically random content using the given random number generator.

pub fn random() -> H160

Create a new hash with cryptographically random content.

Trait Implementations

impl AsMut<[u8]> for H160

impl AsRef<[u8]> for H160

impl<'l, 'r> BitAnd<&'r H160> for &'l H160

type Output = H160

The resulting type after applying the & operator.

impl BitAnd<H160> for H160

type Output = H160

The resulting type after applying the & operator.

impl<'r> BitAndAssign<&'r H160> for H160

impl BitAndAssign<H160> for H160

impl<'l, 'r> BitOr<&'r H160> for &'l H160

type Output = H160

The resulting type after applying the | operator.

impl BitOr<H160> for H160

type Output = H160

The resulting type after applying the | operator.

impl<'r> BitOrAssign<&'r H160> for H160

impl BitOrAssign<H160> for H160

impl<'l, 'r> BitXor<&'r H160> for &'l H160

type Output = H160

The resulting type after applying the ^ operator.

impl BitXor<H160> for H160

type Output = H160

The resulting type after applying the ^ operator.

impl<'r> BitXorAssign<&'r H160> for H160

impl BitXorAssign<H160> for H160

impl Clone for H160

impl Copy for H160

impl Debug for H160

impl Decodable for H160

impl Decode for H160

impl Default for H160

impl<'de> Deserialize<'de> for H160

impl Display for H160

impl Encodable for H160

impl Encode for H160

impl EncodeLike<H160> for H160

impl Eq for H160

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

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

Constructs a hash type from the given reference to the bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

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

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

Constructs a hash type from the given reference to the mutable bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

impl From<[u8; 20]> for H160

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

Constructs a hash type from the given bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

impl From<H160> for H256

impl From<H256> for H160

impl FromStr for H160

type Err = FromHexError

The associated error which can be returned from parsing.

fn from_str(input: &str) -> Result<H160, FromHexError>

Creates a hash type instance from the given string.

Note

The given input string is interpreted in big endian.

Errors

  • When encountering invalid non hex-digits
  • Upon empty string input or invalid input length in general

impl Hash for H160

impl<I> Index<I> for H160 where
    I: SliceIndex<[u8]>, 

type Output = <I as SliceIndex<[u8]>>::Output

The returned type after indexing.

impl<I> IndexMut<I> for H160 where
    I: SliceIndex<[u8], Output = [u8]>, 

impl LowerHex for H160

impl Ord for H160

impl PartialEq<H160> for H160

impl PartialOrd<H160> for H160

impl Serialize for H160

impl UpperHex for H160

Auto Trait Implementations

impl RefUnwindSafe for H160

impl Send for H160

impl Sync for H160

impl Unpin for H160

impl UnwindSafe for H160

Blanket Implementations

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

impl<T, U> AsByteSlice<T> for U where
    T: ToByteSlice,
    U: AsRef<[T]> + ?Sized

impl<T, U> AsMutByteSlice<T> for U where
    T: ToMutByteSlice,
    U: AsMut<[T]> + ?Sized

impl<U> AsMutSliceOf for U where
    U: AsMut<[u8]> + ?Sized

impl<U> AsSliceOf for U where
    U: AsRef<[u8]> + ?Sized

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

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

impl<S> Codec for S where
    S: Encode + Decode, 

impl<T, X> Decode for X where
    T: Decode + Into<X>,
    X: WrapperTypeDecode<Wrapped = T>, 

impl<T> DecodeAll for T where
    T: Decode, 

impl<T> DecodeLimit for T where
    T: Decode, 

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

impl<T> Detokenize for T where
    T: Tokenizable
[src]

impl<T, X> Encode for X where
    T: Encode + ?Sized,
    X: WrapperTypeEncode<Target = T>, 

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode, 

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode, 

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode, 

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode, 

impl<T> EncodeLike<Box<T>> for T where
    T: Encode, 

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode, 

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

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

impl<S> FullCodec for S where
    S: Decode + FullEncode, 

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> KeyedVec for T where
    T: Codec, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> Tokenize for T where
    T: Tokenizable
[src]

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.

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.

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