[][src]Enum schemeguardian::AuthState

pub enum AuthState {
    Unspecified,
    Transparent(SecretString),
    RandomDefault(SecretString),
    Locked(TempLock),
    ResetTriggered(SecretString),
    ResetInProgress(SecretString),
}

Shows the current state of an authentication mechanism used by a user or node The authentication mechanism can be of any kind including a Passphrase, PIN, Hardware etc.

Examples

let foo = AuthState::Unspecified;
assert_eq!(foo, AuthState::Unspecified);

Variants

Unspecified

Shows that the current state of an authentication mechanism is yet to be set by the user. This is used for accounts that have to be pre-registered then the user has to set the authentication mechanism there after

Transparent(SecretString)

shows that an account auth state is in normal state and visible to the user

RandomDefault(SecretString)

shows that an accounts authentication is currently in a default state with a randomly generated authentication mechanism

Locked(TempLock)

shows an account is temporary locked using a TempLock

ResetTriggered(SecretString)

shows that a user triggered an authentication for reset

ResetInProgress(SecretString)

shows the authentication code via email/chat for authentication reset has been triggered.

Trait Implementations

impl Clone for AuthState[src]

impl Eq for AuthState[src]

impl PartialEq<AuthState> for AuthState[src]

impl Debug for AuthState[src]

impl StructuralPartialEq for AuthState[src]

impl StructuralEq for AuthState[src]

impl Serialize for AuthState[src]

impl<'de> Deserialize<'de> for AuthState[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,