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

Can't mount the dynamic library.

Can't clone the repository.

Path not exist.

The Makefile isn't accessible.

The command can't be run.

The command haven't a success return.

Trait Implementations

impl Debug for CompositerError
[src]

Formats the value using the given formatter.

impl Display for CompositerError
[src]

The function fmt formats the value using the given formatter.

impl Error for CompositerError
[src]

The function description returns a short description of the error.

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