pub enum WalletFundsErc20AssetType {
Erc20,
}Expand description
WalletFundsErc20AssetType
JSON schema
{
"type": "string",
"enum": [
"erc20"
]
}Variants§
Erc20
Trait Implementations§
Source§impl Clone for WalletFundsErc20AssetType
impl Clone for WalletFundsErc20AssetType
Source§fn clone(&self) -> WalletFundsErc20AssetType
fn clone(&self) -> WalletFundsErc20AssetType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WalletFundsErc20AssetType
Source§impl Debug for WalletFundsErc20AssetType
impl Debug for WalletFundsErc20AssetType
Source§impl<'de> Deserialize<'de> for WalletFundsErc20AssetType
impl<'de> Deserialize<'de> for WalletFundsErc20AssetType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 WalletFundsErc20AssetType
impl Display for WalletFundsErc20AssetType
impl Eq for WalletFundsErc20AssetType
Source§impl From<&WalletFundsErc20AssetType> for WalletFundsErc20AssetType
impl From<&WalletFundsErc20AssetType> for WalletFundsErc20AssetType
Source§fn from(value: &WalletFundsErc20AssetType) -> Self
fn from(value: &WalletFundsErc20AssetType) -> Self
Converts to this type from the input type.
Source§impl FromStr for WalletFundsErc20AssetType
impl FromStr for WalletFundsErc20AssetType
Source§impl Hash for WalletFundsErc20AssetType
impl Hash for WalletFundsErc20AssetType
Source§impl Ord for WalletFundsErc20AssetType
impl Ord for WalletFundsErc20AssetType
Source§fn cmp(&self, other: &WalletFundsErc20AssetType) -> Ordering
fn cmp(&self, other: &WalletFundsErc20AssetType) -> Ordering
1.21.0 (const: unstable) · 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 WalletFundsErc20AssetType
impl PartialEq for WalletFundsErc20AssetType
Source§fn eq(&self, other: &WalletFundsErc20AssetType) -> bool
fn eq(&self, other: &WalletFundsErc20AssetType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WalletFundsErc20AssetType
impl PartialOrd for WalletFundsErc20AssetType
impl StructuralPartialEq for WalletFundsErc20AssetType
Source§impl TryFrom<&String> for WalletFundsErc20AssetType
impl TryFrom<&String> for WalletFundsErc20AssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for WalletFundsErc20AssetType
impl TryFrom<&str> for WalletFundsErc20AssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for WalletFundsErc20AssetType
impl TryFrom<String> for WalletFundsErc20AssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for WalletFundsErc20AssetType
impl RefUnwindSafe for WalletFundsErc20AssetType
impl Send for WalletFundsErc20AssetType
impl Sync for WalletFundsErc20AssetType
impl Unpin for WalletFundsErc20AssetType
impl UnsafeUnpin for WalletFundsErc20AssetType
impl UnwindSafe for WalletFundsErc20AssetType
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