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