Enum pem_iterator::PreEncapsulationBoundaryError
[−]
[src]
pub enum PreEncapsulationBoundaryError<E> {
MissingExpected(char),
Mismatch {
location: usize,
expected: char,
found: char,
},
LabelError(LabelError),
SourceError(E),
}Variants
MissingExpected(char)MismatchFields of Mismatch
location: usize | |
expected: char | |
found: char |
LabelError(LabelError)SourceError(E)
Trait Implementations
impl<E: Debug> Debug for PreEncapsulationBoundaryError<E>[src]
impl<E: PartialEq> PartialEq for PreEncapsulationBoundaryError<E>[src]
fn eq(&self, __arg_0: &PreEncapsulationBoundaryError<E>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PreEncapsulationBoundaryError<E>) -> bool[src]
This method tests for !=.
impl<E> From<SourceError<E>> for PreEncapsulationBoundaryError<E>[src]
impl<E> From<ExpectedError> for PreEncapsulationBoundaryError<E>[src]
impl<E> From<LabelError> for PreEncapsulationBoundaryError<E>[src]
fn from(e: LabelError) -> Self[src]
Performs the conversion.