Enum elp::ELBRecordParsingError [] [src]

pub enum ELBRecordParsingError {
    MalformedRecord,
    ParsingError {
        field_name: ELBRecordField,
        description: String,
    },
}

Specific parsing errors that are returned as part of the [ParsingErrors::errors] (struct.ParsingErrors.html) collection.

Variants

Returned if the record does not have the correct number of fields.

A failed attempt to parse a specific field of the ELB record.

Fields of ParsingError

Trait Implementations

impl Debug for ELBRecordParsingError
[src]

Formats the value using the given formatter.

impl PartialEq for ELBRecordParsingError
[src]

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

This method tests for !=.

impl Display for ELBRecordParsingError
[src]

Formats the value using the given formatter. Read more

impl Error for ELBRecordParsingError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more