Enum scram_tmp::Error[][src]

pub enum Error {
    Protocol(Kind),
    UnsupportedExtension,
    InvalidServer,
    Authentication(String),
    InvalidUser(String),
}

The SCRAM mechanism error cases.

Variants

A message wasn't formatted as required. Kind contains further information.

RFC5803 section 7 describes the format of the exchanged messages.

The server required a mandatory extension to be present that this client doesn't support.

The server couldn't be validated. This usually means that the server didn't posess a stored key to verify the credentials.

The server rejected the authentication request. String contains a message from the server.

The username supplied was not valid

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Error
[src]

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

This method tests for !=.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error