[][src]Enum picky::x509::csr::CsrError

pub enum CsrError {
    Asn1Serialization {
        element: &'static str,
        source: Asn1DerError,
    },
    Asn1Deserialization {
        element: &'static str,
        source: Asn1DerError,
    },
    Signature {
        source: SignatureError,
    },
    InvalidPemLabel {
        label: String,
    },
    Pem {
        source: PemError,
    },
}

Variants

Asn1Serialization

ASN1 serialization error

Fields of Asn1Serialization

element: &'static strsource: Asn1DerError
Asn1Deserialization

ASN1 deserialization error

Fields of Asn1Deserialization

element: &'static strsource: Asn1DerError
Signature

signature error

Fields of Signature

source: SignatureError
InvalidPemLabel

invalid PEM label error

Fields of InvalidPemLabel

label: String
Pem

invalid PEM provided

Fields of Pem

source: PemError

Trait Implementations

impl Debug for CsrError[src]

impl Display for CsrError[src]

impl Error for CsrError[src]

impl From<PemError> for CsrError[src]

Auto Trait Implementations

impl !RefUnwindSafe for CsrError

impl Send for CsrError

impl Sync for CsrError

impl Unpin for CsrError

impl !UnwindSafe for CsrError

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,