Enum edcert::validator::ValidationError [] [src]

pub enum ValidationError {
    SignatureInvalid,
    ParentInvalid,
    Expired,
    Revoked,
    Other,
}

This type contains information about why a validation failed.

Variants

Some signature is invalid.

The parent certificate is invalid.

Something is expired.

The certificate has been revoked.

Some other error happened while trying to validate. (eg. a server was not responding)

Trait Implementations

impl Debug for ValidationError
[src]

Formats the value using the given formatter.

impl Hash for ValidationError
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for ValidationError
[src]

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

This method tests for !=.

impl Eq for ValidationError
[src]

impl From<RevokeError> for ValidationError
[src]

Performs the conversion.