pub enum WalletFundsNativeTokenAssetType {
NativeToken,
}Expand description
WalletFundsNativeTokenAssetType
JSON schema
{
"type": "string",
"enum": [
"native-token"
]
}Variants§
NativeToken
Trait Implementations§
Source§impl Clone for WalletFundsNativeTokenAssetType
impl Clone for WalletFundsNativeTokenAssetType
Source§fn clone(&self) -> WalletFundsNativeTokenAssetType
fn clone(&self) -> WalletFundsNativeTokenAssetType
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 WalletFundsNativeTokenAssetType
Source§impl<'de> Deserialize<'de> for WalletFundsNativeTokenAssetType
impl<'de> Deserialize<'de> for WalletFundsNativeTokenAssetType
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
impl Eq for WalletFundsNativeTokenAssetType
Source§impl From<&WalletFundsNativeTokenAssetType> for WalletFundsNativeTokenAssetType
impl From<&WalletFundsNativeTokenAssetType> for WalletFundsNativeTokenAssetType
Source§fn from(value: &WalletFundsNativeTokenAssetType) -> Self
fn from(value: &WalletFundsNativeTokenAssetType) -> Self
Converts to this type from the input type.
Source§impl Ord for WalletFundsNativeTokenAssetType
impl Ord for WalletFundsNativeTokenAssetType
Source§fn cmp(&self, other: &WalletFundsNativeTokenAssetType) -> Ordering
fn cmp(&self, other: &WalletFundsNativeTokenAssetType) -> 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 WalletFundsNativeTokenAssetType
impl PartialEq for WalletFundsNativeTokenAssetType
Source§fn eq(&self, other: &WalletFundsNativeTokenAssetType) -> bool
fn eq(&self, other: &WalletFundsNativeTokenAssetType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WalletFundsNativeTokenAssetType
impl PartialOrd for WalletFundsNativeTokenAssetType
impl StructuralPartialEq for WalletFundsNativeTokenAssetType
Source§impl TryFrom<&String> for WalletFundsNativeTokenAssetType
impl TryFrom<&String> for WalletFundsNativeTokenAssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for WalletFundsNativeTokenAssetType
impl TryFrom<&str> for WalletFundsNativeTokenAssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for WalletFundsNativeTokenAssetType
impl TryFrom<String> for WalletFundsNativeTokenAssetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for WalletFundsNativeTokenAssetType
impl RefUnwindSafe for WalletFundsNativeTokenAssetType
impl Send for WalletFundsNativeTokenAssetType
impl Sync for WalletFundsNativeTokenAssetType
impl Unpin for WalletFundsNativeTokenAssetType
impl UnsafeUnpin for WalletFundsNativeTokenAssetType
impl UnwindSafe for WalletFundsNativeTokenAssetType
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