Enum yubico::yubicoerror::YubicoError [] [src]

pub enum YubicoError {
    Network(Error),
    HTTPStatusCode(StatusCode),
    IOError(ioError),
    ChannelError(channelError),
    BadOTP,
    ReplayedOTP,
    BadSignature,
    MissingParameter,
    NoSuchClient,
    OperationNotAllowed,
    BackendError,
    NotEnoughAnswers,
    ReplayedRequest,
    UnknownStatus,
    OTPMismatch,
    NonceMismatch,
    SignatureMismatch,
}

Variants

Trait Implementations

impl Debug for YubicoError
[src]

Formats the value using the given formatter.

impl Display for YubicoError
[src]

Formats the value using the given formatter.

impl Error for YubicoError
[src]

A short description of the error. Read more

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

impl From<Error> for YubicoError
[src]

Performs the conversion.

impl From<StatusCode> for YubicoError
[src]

Performs the conversion.

impl From<ioError> for YubicoError
[src]

Performs the conversion.

impl From<channelError> for YubicoError
[src]

Performs the conversion.