Enum walletd::EthereumFormat
source · pub enum EthereumFormat {
Checksummed,
NonChecksummed,
}Expand description
EthereumFormat is an enum that represents the format of an Ethereum address (checksummed or non-checksummed)
Variants§
Checksummed
Checksummed is the checksummed format of an Ethereum address where the case of each letter is mixed using the checksum algorithm
NonChecksummed
NonChecksummed is the non-checksummed format of an Ethereum address where the letters are all lowercase
Trait Implementations§
source§impl Clone for EthereumFormat
impl Clone for EthereumFormat
source§fn clone(&self) -> EthereumFormat
fn clone(&self) -> EthereumFormat
Returns a copy 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 Default for EthereumFormat
impl Default for EthereumFormat
source§fn default() -> EthereumFormat
fn default() -> EthereumFormat
Returns the “default value” for a type. Read more
source§impl Display for EthereumFormat
impl Display for EthereumFormat
impl Copy for EthereumFormat
Auto Trait Implementations§
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