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