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