Enum porteurbars::Error [] [src]

pub enum Error {
    DefaultsNotFound,
    Io(Error),
    Render(RenderError),
    Template(TemplateError),
    TemplateRender(TemplateRenderError),
    Homeless,
    Git(Error),
}

Enumeration of types of errors

Variants

No default.env file could be found

IO error occurred

Handlebars render error

Handlebars template compiler error

Handlebars template render error

Home directory could not be resolved

Git interaction error

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<RenderError> for Error
[src]

Performs the conversion.

impl From<TemplateError> for Error
[src]

Performs the conversion.

impl From<TemplateRenderError> for Error
[src]

Performs the conversion.