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