pub enum AuthAction {
Send(AuthProperties),
Complete,
Fail(String),
}Expand description
Action returned by an Authenticator after an AUTH Continue packet.
Variants§
Trait Implementations§
Source§impl Clone for AuthAction
impl Clone for AuthAction
Source§fn clone(&self) -> AuthAction
fn clone(&self) -> AuthAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthAction
impl Debug for AuthAction
Source§impl PartialEq for AuthAction
impl PartialEq for AuthAction
Source§fn eq(&self, other: &AuthAction) -> bool
fn eq(&self, other: &AuthAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthAction
impl StructuralPartialEq for AuthAction
Auto Trait Implementations§
impl !Freeze for AuthAction
impl RefUnwindSafe for AuthAction
impl Send for AuthAction
impl Sync for AuthAction
impl Unpin for AuthAction
impl UnsafeUnpin for AuthAction
impl UnwindSafe for AuthAction
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