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