Enum warheadhateus::AWSAuthError [] [src]

pub enum AWSAuthError {
    FromUtf8Error(FromUtf8Error),
    ModeError,
    Nacl(SSError),
    Other(&'static str),
    ParseError(ParseError),
}

Authentication Error Types

Variants

Error thrown converting from UTF-8.

Error thrown when running methods not valid for the current mode.

Error thrown during sodium operations.

General error thrown during operation.

Error thrown parsing a datetime.

Trait Implementations

impl Debug for AWSAuthError
[src]

Formats the value using the given formatter.

impl Error for AWSAuthError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for AWSAuthError
[src]

Formats the value using the given formatter. Read more

impl From<SSError> for AWSAuthError
[src]

Performs the conversion.

impl From<FromUtf8Error> for AWSAuthError
[src]

Performs the conversion.

impl From<ParseError> for AWSAuthError
[src]

Performs the conversion.