Enum redux::Error [] [src]

pub enum Error {
    Eof,
    InvalidInput,
    IoError(Error),
}

Possible errors that occur throughout this library

Variants

The input stream has ended (unexpectedly)

An invalid combination of data has occured on the input that the library was unable to process.

An I/O error occured.

Trait Implementations

impl Display for Error
[src]

Formats the value using the given formatter.

impl Debug for Error
[src]

Formats the value using the given formatter.