Enum signatory::error::ErrorKind[][src]

pub enum ErrorKind {
    Io,
    KeyInvalid,
    ParseError,
    ProviderError,
    SignatureInvalid,
}

Kinds of errors

Variants

Input/output error

Malformatted or otherwise invalid cryptographic key

Error parsing a file format or other data

Internal error within a cryptographic provider

Signature is not valid

Methods

impl ErrorKind
[src]

Obtain a string description of an error. Like description() but not bound to std

Trait Implementations

impl From<ErrorKind> for Error
[src]

Performs the conversion.

impl Copy for ErrorKind
[src]

impl Clone for ErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for ErrorKind
[src]

impl PartialEq for ErrorKind
[src]

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

This method tests for !=.

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl Display for ErrorKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind