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