Enum pem_iterator::ParseError [] [src]

pub enum ParseError {
    MissingExpected(char),
    Mismatch {
        location: usize,
        expected: char,
        found: char,
    },
    LabelError(LabelError),
    InvalidCharacter(char),
}

Variants

Fields of Mismatch

Trait Implementations

impl Debug for ParseError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ParseError
[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 From<ExpectedError> for ParseError
[src]

[src]

Performs the conversion.

impl From<LabelError> for ParseError
[src]

[src]

Performs the conversion.

impl From<PreEncapsulationBoundaryError<Void>> for ParseError
[src]

[src]

Performs the conversion.

impl From<PemError<Void>> for ParseError
[src]

[src]

Performs the conversion.