pub enum TanAction {
ConfirmPushTan,
SwitchTanMethod {
method_id: String,
tan: String,
},
Cancel,
}Expand description
User decision for a pending TAN challenge.
Variants§
ConfirmPushTan
Confirm a Push-TAN challenge after the user has already approved it externally.
SwitchTanMethod
Switch to a different TAN method and submit its TAN value.
Cancel
Abort the login flow.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TanAction
impl RefUnwindSafe for TanAction
impl Send for TanAction
impl Sync for TanAction
impl Unpin for TanAction
impl UnsafeUnpin for TanAction
impl UnwindSafe for TanAction
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