Enum neko::dynamic::err::CompositerError
[−]
[src]
pub enum CompositerError {
BadMount(LibraryError),
BadGitClone(Error),
BadPath,
NotMakeFound,
BadCommand(Error),
BadReturnCommand(i32),
}The enum CompositerError defines the possible errors
from constructor Compositer.
Variants
BadMount(LibraryError)Can't mount the dynamic library.
BadGitClone(Error)Can't clone the repository.
BadPathPath not exist.
NotMakeFoundThe Makefile isn't accessible.
BadCommand(Error)The command can't be run.
BadReturnCommand(i32)The command haven't a success return.
Trait Implementations
impl Debug for CompositerError[src]
impl Display for CompositerError[src]
fn fmt(&self, f: &mut Formatter) -> Result
The function fmt formats the value using
the given formatter.
impl Error for CompositerError[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.