pub enum DisableMfaError {
Status404(ClerkErrors),
Status500(ClerkErrors),
UnknownValue(Value),
}
Expand description
struct for typed errors of method [disable_mfa
]
Variants§
Trait Implementations§
Source§impl Clone for DisableMfaError
impl Clone for DisableMfaError
Source§fn clone(&self) -> DisableMfaError
fn clone(&self) -> DisableMfaError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DisableMfaError
impl Debug for DisableMfaError
Source§impl<'de> Deserialize<'de> for DisableMfaError
impl<'de> Deserialize<'de> for DisableMfaError
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
Auto Trait Implementations§
impl Freeze for DisableMfaError
impl RefUnwindSafe for DisableMfaError
impl Send for DisableMfaError
impl Sync for DisableMfaError
impl Unpin for DisableMfaError
impl UnwindSafe for DisableMfaError
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