pub enum EthereumFormat {
Standard,
}Expand description
Represents the format of a Ethereum address
Variants§
Standard
Trait Implementations§
Source§impl Clone for EthereumFormat
impl Clone for EthereumFormat
Source§fn clone(&self) -> EthereumFormat
fn clone(&self) -> EthereumFormat
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 EthereumFormat
impl Debug for EthereumFormat
Source§impl Display for EthereumFormat
impl Display for EthereumFormat
Source§impl Hash for EthereumFormat
impl Hash for EthereumFormat
Source§impl Ord for EthereumFormat
impl Ord for EthereumFormat
Source§fn cmp(&self, other: &EthereumFormat) -> Ordering
fn cmp(&self, other: &EthereumFormat) -> 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 EthereumFormat
impl PartialEq for EthereumFormat
Source§impl PartialOrd for EthereumFormat
impl PartialOrd for EthereumFormat
Source§impl Serialize for EthereumFormat
impl Serialize for EthereumFormat
impl Eq for EthereumFormat
impl Format for EthereumFormat
impl StructuralPartialEq for EthereumFormat
Auto Trait Implementations§
impl Freeze for EthereumFormat
impl RefUnwindSafe for EthereumFormat
impl Send for EthereumFormat
impl Sync for EthereumFormat
impl Unpin for EthereumFormat
impl UnwindSafe for EthereumFormat
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<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