pub enum AuthEvent {
Started {
kind: AuthExchangeKind,
method: String,
},
Continue {
kind: AuthExchangeKind,
method: String,
},
Succeeded {
kind: AuthExchangeKind,
method: String,
},
Failed {
kind: AuthExchangeKind,
method: String,
reason: AuthFailureReason,
},
}Expand description
Structured authentication lifecycle event yielded by the event loop.
Variants§
Trait Implementations§
impl Eq for AuthEvent
impl StructuralPartialEq for AuthEvent
Auto Trait Implementations§
impl Freeze for AuthEvent
impl RefUnwindSafe for AuthEvent
impl Send for AuthEvent
impl Sync for AuthEvent
impl Unpin for AuthEvent
impl UnsafeUnpin for AuthEvent
impl UnwindSafe for AuthEvent
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