Enum nakadion::auth::TokenError[][src]

pub enum TokenError {
    Client {
        message: String,
    },
    Server {
        message: String,
    },
    Other {
        message: String,
    },
}

Variants

Fields of Client

Fields of Server

Fields of Other

Trait Implementations

impl Debug for TokenError
[src]

Formats the value using the given formatter. Read more

impl Clone for TokenError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<TokenError> for CommitError
[src]

Performs the conversion.

impl From<TokenError> for StatsError
[src]

Performs the conversion.

impl From<TokenError> for ConnectError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for TokenError

impl Sync for TokenError