pub struct AddressHash(/* private fields */);Trait Implementations§
Source§impl Bytes for AddressHash
impl Bytes for AddressHash
Source§impl Clone for AddressHash
impl Clone for AddressHash
Source§fn clone(&self) -> AddressHash
fn clone(&self) -> AddressHash
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AddressHash
impl Debug for AddressHash
Source§impl Deref for AddressHash
impl Deref for AddressHash
Source§impl From<&AddressBytes> for AddressHash
impl From<&AddressBytes> for AddressHash
Source§fn from(address_bytes: &AddressBytes) -> AddressHash
fn from(address_bytes: &AddressBytes) -> AddressHash
Converts to this type from the input type.
Source§impl From<ByteView> for AddressHash
impl From<ByteView> for AddressHash
Source§fn from(value: ByteView) -> AddressHash
fn from(value: ByteView) -> AddressHash
Converts to this type from the input type.
Source§impl Hash for AddressHash
impl Hash for AddressHash
Source§impl Ord for AddressHash
impl Ord for AddressHash
Source§fn cmp(&self, other: &AddressHash) -> Ordering
fn cmp(&self, other: &AddressHash) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AddressHash
impl PartialEq for AddressHash
Source§impl PartialOrd for AddressHash
impl PartialOrd for AddressHash
impl Copy for AddressHash
impl Eq for AddressHash
impl StructuralPartialEq for AddressHash
Auto Trait Implementations§
impl Freeze for AddressHash
impl RefUnwindSafe for AddressHash
impl Send for AddressHash
impl Sync for AddressHash
impl Unpin for AddressHash
impl UnwindSafe for AddressHash
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more