Enum handlebars::TemplateRenderError []

pub enum TemplateRenderError {
    TemplateError(TemplateError),
    RenderError(RenderError),
    IOError(IOError),
}

Variants

TemplateError(TemplateError)RenderError(RenderError)IOError(IOError)

Trait Implementations

impl Debug for TemplateRenderError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for TemplateRenderError

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for TemplateRenderError

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl From<TemplateError> for TemplateRenderError

fn from(err: TemplateError) -> TemplateRenderError

Performs the conversion.

impl From<RenderError> for TemplateRenderError

fn from(err: RenderError) -> TemplateRenderError

Performs the conversion.

impl From<IOError> for TemplateRenderError

fn from(err: IOError) -> TemplateRenderError

Performs the conversion.