Enum incrust::renderer::abc::RenderError [] [src]

pub enum RenderError {
    LoadTemplate(LoadError),
    ParseTemplate(ParseError),
    VariableNotExists(String),
    EvalExpression(EvalError),
    Filter(FilterError),
    FunctionCallException(String),
    Format(Error),
}

Variants

Trait Implementations

impl Debug for RenderError
[src]

Formats the value using the given formatter.

impl From<LoadError> for RenderError
[src]

Performs the conversion.

impl From<EvalError> for RenderError
[src]

Performs the conversion.

impl From<ParseError> for RenderError
[src]

Performs the conversion.

impl From<FilterError> for RenderError
[src]

Performs the conversion.

impl From<Error> for RenderError
[src]

Performs the conversion.