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