Enum pem_iterator::PreEncapsulationBoundaryError [] [src]

pub enum PreEncapsulationBoundaryError<E> {
    MissingExpected(char),
    Mismatch {
        location: usize,
        expected: char,
        found: char,
    },
    LabelError(LabelError),
    SourceError(E),
}

Variants

Fields of Mismatch

Trait Implementations

impl<E: Debug> Debug for PreEncapsulationBoundaryError<E>
[src]

[src]

Formats the value using the given formatter.

impl<E: PartialEq> PartialEq for PreEncapsulationBoundaryError<E>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<E> From<SourceError<E>> for PreEncapsulationBoundaryError<E>
[src]

[src]

Performs the conversion.

impl<E> From<ExpectedError> for PreEncapsulationBoundaryError<E>
[src]

[src]

Performs the conversion.

impl<E> From<LabelError> for PreEncapsulationBoundaryError<E>
[src]

[src]

Performs the conversion.