pub enum WalletInviteInputValue {
Variant0(String),
Variant1(String),
}Expand description
WalletInviteInputValue
JSON schema
{
"oneOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}Variants§
Trait Implementations§
Source§impl Clone for WalletInviteInputValue
impl Clone for WalletInviteInputValue
Source§fn clone(&self) -> WalletInviteInputValue
fn clone(&self) -> WalletInviteInputValue
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 moreSource§impl Debug for WalletInviteInputValue
impl Debug for WalletInviteInputValue
Source§impl<'de> Deserialize<'de> for WalletInviteInputValue
impl<'de> Deserialize<'de> for WalletInviteInputValue
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 WalletInviteInputValue
impl Display for WalletInviteInputValue
Source§impl From<&WalletInviteInputValue> for WalletInviteInputValue
impl From<&WalletInviteInputValue> for WalletInviteInputValue
Source§fn from(value: &WalletInviteInputValue) -> Self
fn from(value: &WalletInviteInputValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletInviteInputValue
impl RefUnwindSafe for WalletInviteInputValue
impl Send for WalletInviteInputValue
impl Sync for WalletInviteInputValue
impl Unpin for WalletInviteInputValue
impl UnsafeUnpin for WalletInviteInputValue
impl UnwindSafe for WalletInviteInputValue
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