pub enum ConfirmationMethodClass {
Code,
Confirmation,
Stored,
None,
}Expand description
The class of confirmation method
Variants§
Code
Provide a totp token
Confirmation
Confirm the login out-of-band
Stored
Provide stored guard data
None
No action required
Trait Implementations§
Source§impl Clone for ConfirmationMethodClass
impl Clone for ConfirmationMethodClass
Source§fn clone(&self) -> ConfirmationMethodClass
fn clone(&self) -> ConfirmationMethodClass
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 ConfirmationMethodClass
impl Debug for ConfirmationMethodClass
Source§impl PartialEq for ConfirmationMethodClass
impl PartialEq for ConfirmationMethodClass
impl Eq for ConfirmationMethodClass
impl StructuralPartialEq for ConfirmationMethodClass
Auto Trait Implementations§
impl Freeze for ConfirmationMethodClass
impl RefUnwindSafe for ConfirmationMethodClass
impl Send for ConfirmationMethodClass
impl Sync for ConfirmationMethodClass
impl Unpin for ConfirmationMethodClass
impl UnwindSafe for ConfirmationMethodClass
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