[][src]Enum x509_parser::error::X509Error

pub enum X509Error {
    Generic,
    InvalidVersion,
    InvalidSerial,
    InvalidAlgorithmIdentifier,
    InvalidX509Name,
    InvalidDate,
    InvalidExtensions,
    InvalidTbsCertificate,
    InvalidCertificate,
    Der(BerError),
    NomError(ErrorKind),
}

An error that can occur while parsing or validating a certificate.

Variants

GenericInvalidVersionInvalidSerialInvalidAlgorithmIdentifierInvalidX509NameInvalidDateInvalidExtensionsInvalidTbsCertificateInvalidCertificate

Top-level certificate structure is invalid

Der(BerError)NomError(ErrorKind)

Trait Implementations

impl From<BerError> for X509Error[src]

impl From<ErrorKind> for X509Error[src]

impl Debug for X509Error[src]

impl<I> ParseError<I> for X509Error[src]

fn from_char(input: I, char) -> Self[src]

creates an error from an input position and an expected character

fn or(self, other: Self) -> Self[src]

combines two existing error. This function is used to compare errors generated in various branches of [alt] Read more

fn add_context(_input: I, _ctx: &'static str, other: Self) -> Self[src]

create a new error from an input position, a static string and an existing error. This is used mainly in the [context] combinator, to add user friendly information to errors when backtracking through a parse tree Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]