pub enum PemError {
MismatchedTags(String, String),
MalformedFraming,
MissingBeginTag,
MissingEndTag,
MissingData,
InvalidData(DecodeError),
NotUtf8(Utf8Error),
}
Expand description
The pem
error type.
Variants§
MismatchedTags(String, String)
MalformedFraming
MissingBeginTag
MissingEndTag
MissingData
InvalidData(DecodeError)
NotUtf8(Utf8Error)
Trait Implementations§
source§impl Error for PemError
impl Error for PemError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl PartialEq for PemError
impl PartialEq for PemError
impl Eq for PemError
impl StructuralPartialEq for PemError
Auto Trait Implementations§
impl Freeze for PemError
impl RefUnwindSafe for PemError
impl Send for PemError
impl Sync for PemError
impl Unpin for PemError
impl UnwindSafe for PemError
Blanket Implementations§
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