Enum datafusion_rustyline::error::ReadlineError[][src]

pub enum ReadlineError {
    Io(Error),
    Eof,
    Interrupted,
    Char(Utf8Error),
    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. Read more

impl Display for ReadlineError
[src]

Formats the value using the given formatter. Read more

impl Error for ReadlineError
[src]

This method is soft-deprecated. 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<Utf8Error> for ReadlineError
[src]

Performs the conversion.

Auto Trait Implementations