[][src]Enum templar::error::TemplarError

pub enum TemplarError {
    ParseFailure(String),
    RenderFailure(String),
    ContextFailure(String),
    FilterNotFound(String),
    FunctionNotFound(String),
    IO(String),
    Other(Arc<Box<dyn Error + Send + Sync>>),
}

This is the primary error type for template

Variants

ParseFailure(String)

Some error occurred while parsing a template

RenderFailure(String)

Some error occurred while rendering a template

ContextFailure(String)

Error occurred while manipulating the context

FilterNotFound(String)

Filter referred to by template is not available

FunctionNotFound(String)

Function referred to by template is not available

IO(String)

An I/O error occurred

Other(Arc<Box<dyn Error + Send + Sync>>)

Some other error, check the inner value

Trait Implementations

impl Clone for TemplarError[src]

impl Debug for TemplarError[src]

impl Display for TemplarError[src]

impl Error for TemplarError[src]

impl From<Box<dyn Error + 'static + Send + Sync, Global>> for TemplarError[src]

impl From<Error> for TemplarError[src]

impl From<TemplarError> for Data[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.