Enum actix_web_security::authentication::error::error_type::AuthenticationError[][src]

pub enum AuthenticationError {
    AuthorizationHeaderNotSet,
    InvalidAuthorizationHeader,
    InvalidAuthentication,
    InvalidToken,
    UsernameNotFound,
}

Authentication related errors.

Variants

AuthorizationHeaderNotSet

No Authorization header is set.

InvalidAuthorizationHeader

The value in the Authorization header is invalid.

InvalidAuthentication

The type of authorization (Basic/Bearer/etc.) cannot be handled by the current authentication provider or header extractor.

InvalidToken

The authentication data/token cannot be decoded successfully or is not valid anymore.

UsernameNotFound

A user to be authenticated cannot be found or cannot be retrieved from the request context/extensions.

Trait Implementations

impl Clone for AuthenticationError[src]

impl Debug for AuthenticationError[src]

impl Display for AuthenticationError[src]

impl Eq for AuthenticationError[src]

impl Error for AuthenticationError[src]

impl Hash for AuthenticationError[src]

impl PartialEq<AuthenticationError> for AuthenticationError[src]

impl ResponseError for AuthenticationError[src]

impl StructuralEq for AuthenticationError[src]

impl StructuralPartialEq for AuthenticationError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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<V, T> VZip<V> for T where
    V: MultiLane<T>,