[][src]Enum tera::ErrorKind

pub enum ErrorKind {
    Msg(String),
    CircularExtend {
        tpl: String,
        inheritance_chain: Vec<String>,
    },
    MissingParent {
        current: String,
        parent: String,
    },
    TemplateNotFound(String),
    FilterNotFound(String),
    TestNotFound(String),
    InvalidMacroDefinition(String),
    FunctionNotFound(String),
    Json(Error),
    // some variants omitted
}

The kind of an error (non-exhaustive)

Variants

Msg(String)

Generic error

CircularExtend

A loop was found while looking up the inheritance chain

Fields of CircularExtend

tpl: String

Name of the template with the loop

inheritance_chain: Vec<String>

All the parents templates we found so far

MissingParent

A template is extending a template that wasn't found in the Tera instance

Fields of MissingParent

current: String

The template we are currently looking at

parent: String

The missing template

TemplateNotFound(String)

A template was missing (more generic version of MissingParent)

FilterNotFound(String)

A filter wasn't found

TestNotFound(String)

A test wasn't found

InvalidMacroDefinition(String)

A macro was defined in the middle of a template

FunctionNotFound(String)

A function wasn't found

Json(Error)

An error happened while serializing JSON

Trait Implementations

impl Debug for ErrorKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,