Enum rust_fixed_width::record::Error [] [src]

pub enum Error {
    RecordSpecNameRequired,
    RecordSpecRecognizerError(RecognizerError),
    RecordSpecNotFound(String),
    FieldSpecNotFound(StringString),
    PadderFailure(PadderError),
    IoError(IoError),
    StringDoesNotMatchLineEnding(StringString),
    PaddedValueWrongLength(usizeusize),
    FieldValueRequired(StringString),
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl ErrorTrait for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<RecognizerError> for Error
[src]

Performs the conversion.

impl From<PadderError> for Error
[src]

Performs the conversion.