Enum neko::NekoError [] [src]

pub enum NekoError {
    Dynamic(CompositerError),
    Graphic(GraphicError),
    Shell(ShellError),
}

The enum NekoError defines the possible errors from constructor Neko.

Variants

The dynamic library interface has occured an error.

The graphic interface has occured an error.

The shell interface has occured an error.

Trait Implementations

impl Debug for NekoError
[src]

Formats the value using the given formatter.

impl Display for NekoError
[src]

The function fmt formats the value using the given formatter.

impl Error for NekoError
[src]

The function description returns a short description of the error.

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

impl From<CompositerError> for NekoError
[src]

Performs the conversion.

impl From<GraphicError> for NekoError
[src]

Performs the conversion.

impl From<ShellError> for NekoError
[src]

Performs the conversion.