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