pub enum InitiateOutcome {
NeedTan(InitiateResult),
Authenticated(InitiateNoTanResult),
}Expand description
Either we need TAN or we’re already authenticated.
Variants§
NeedTan(InitiateResult)
Authenticated(InitiateNoTanResult)
Auto Trait Implementations§
impl Freeze for InitiateOutcome
impl !RefUnwindSafe for InitiateOutcome
impl Send for InitiateOutcome
impl Sync for InitiateOutcome
impl Unpin for InitiateOutcome
impl UnsafeUnpin for InitiateOutcome
impl !UnwindSafe for InitiateOutcome
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