Enum frank_jwt::error::Error [] [src]

pub enum Error {
    SignatureExpired,
    SignatureInvalid,
    JWTInvalid,
    IssuerInvalid,
    ExpirationInvalid,
    AudienceInvalid,
    FormatInvalid(String),
    IoError(String),
    OpenSslError(String),
    ProtocolError(String),
}

Variants

Trait Implementations

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Error
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Error
[src]

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl From<SJError> for Error
[src]

[src]

Performs the conversion.

impl From<ErrorStack> for Error
[src]

[src]

Performs the conversion.

impl From<B64Error> for Error
[src]

[src]

Performs the conversion.