Enum trimmer::RenderError []

pub enum RenderError {
    Io(Error),
    Fmt(Error),
    Data(Vec<(Pos, DataError)>),
}

Error rendering template

Variants

Error writing into output buffer

Error formatting value

TODO(tailhook) move it to the list of errors

Error when some of the variable has unexpected type or does not support required operation

When this kind of error occurs we try to skip error and do our best to continue rendering and collect more errors

Trait Implementations

impl Debug for RenderError
[src]

Formats the value using the given formatter.

impl Display for RenderError

Formats the value using the given formatter. Read more

impl Error for RenderError

A short description of the error. Read more

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

impl From<Error> for RenderError

Performs the conversion.

impl From<Error> for RenderError

Performs the conversion.