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