Enum neko::prelude::ShellError []

pub enum ShellError {
    ForkFail(ForkError),
    TermiosFail(TermiosError),
    NotFound,
}

The enum ShellError defines the possible errors from constructor Shell.

Variants

Trait Implementations

impl Copy for ShellError

impl Debug for ShellError

Formats the value using the given formatter.

impl Clone for ShellError

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for ShellError

The function fmt formats the value using the given formatter.

impl Error for ShellError

The function description returns a short description of the error.

The function cause returns the lower-level cause of this error, if any.