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