pub enum CertParseError {
X509(Err<X509Error>),
Pem(PemError),
TooFewPem(usize),
InvalidPrivateKey,
}
Variants§
Trait Implementations§
source§impl Debug for CertParseError
impl Debug for CertParseError
source§impl Display for CertParseError
impl Display for CertParseError
source§impl Error for CertParseError
impl Error for CertParseError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for CertParseError
impl RefUnwindSafe for CertParseError
impl Send for CertParseError
impl Sync for CertParseError
impl Unpin for CertParseError
impl UnwindSafe for CertParseError
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more