pub enum CredentialAttemptStatus {
Open,
Rejected,
}Expand description
Observable credential-attempt lifecycle state.
Variants§
Open
The current generation may begin new executions.
Rejected
Authentication rejection closed the current generation.
Trait Implementations§
Source§impl Clone for CredentialAttemptStatus
impl Clone for CredentialAttemptStatus
Source§fn clone(&self) -> CredentialAttemptStatus
fn clone(&self) -> CredentialAttemptStatus
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 moreimpl Copy for CredentialAttemptStatus
Source§impl Debug for CredentialAttemptStatus
impl Debug for CredentialAttemptStatus
impl Eq for CredentialAttemptStatus
Source§impl PartialEq for CredentialAttemptStatus
impl PartialEq for CredentialAttemptStatus
impl StructuralPartialEq for CredentialAttemptStatus
Auto Trait Implementations§
impl Freeze for CredentialAttemptStatus
impl RefUnwindSafe for CredentialAttemptStatus
impl Send for CredentialAttemptStatus
impl Sync for CredentialAttemptStatus
impl Unpin for CredentialAttemptStatus
impl UnsafeUnpin for CredentialAttemptStatus
impl UnwindSafe for CredentialAttemptStatus
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