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