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