Enum neko::NekoError
[−]
[src]
pub enum NekoError { Dynamic(CompositerError), Graphic(GraphicError), Shell(ShellError), }
The enum NekoError
defines the possible errors
from constructor Neko.
Variants
Dynamic(CompositerError)
The dynamic library interface has occured an error.
Graphic(GraphicError)
The graphic interface has occured an error.
Shell(ShellError)
The shell interface has occured an error.
Trait Implementations
impl Debug for NekoError
[src]
impl Display for NekoError
[src]
fn fmt(&self, _: &mut Formatter) -> Result
The function fmt
formats the value using
the given formatter.
impl Error for NekoError
[src]
fn description(&self) -> &str
The function description
returns a short description of
the error.
fn cause(&self) -> Option<&Error>
The function cause
returns the lower-level cause of
this error if any.
impl From<CompositerError> for NekoError
[src]
fn from(err: CompositerError) -> NekoError
Performs the conversion.
impl From<GraphicError> for NekoError
[src]
fn from(err: GraphicError) -> NekoError
Performs the conversion.
impl From<ShellError> for NekoError
[src]
fn from(err: ShellError) -> NekoError
Performs the conversion.