Enum http_signatures::Error [] [src]

pub enum Error {
    IO(IoError),
    Verification(VerificationError),
    Creation(CreationError),
    Unknown,
}

The root Error

Variants

Problems opening files and such

Problems verifying a request

Problems creating a signature

Unknown error occurred

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl From<VerificationError> for Error
[src]

[src]

Performs the conversion.

impl From<DecodeError> for Error
[src]

[src]

Performs the conversion.

impl From<CreationError> for Error
[src]

[src]

Performs the conversion.