Enum rustyline::error::ReadlineError [] [src]

pub enum ReadlineError {
    Io(Error),
    Eof,
    Interrupted,
    Char(CharsError),
    Errno(Error),
}

The error type for Rustyline errors that can arise from I/O related errors or Errno when using the nix-rust library

Variants

I/O Error

EOF (Ctrl-D)

Ctrl-C

Chars Error

Unix Error from syscall

Trait Implementations

impl Debug for ReadlineError
[src]

Formats the value using the given formatter.

impl Display for ReadlineError
[src]

Formats the value using the given formatter. Read more

impl Error for ReadlineError
[src]

A short description of the error. Read more

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

impl From<Error> for ReadlineError
[src]

Performs the conversion.

impl From<Error> for ReadlineError
[src]

Performs the conversion.

impl From<CharsError> for ReadlineError
[src]

Performs the conversion.