Enum askama::Error [−]
pub enum Error { Fmt(Error), // some variants omitted }
askama error type
Feature Interaction
If the feature serde-json
is enabled an
additional error variant Json
is added.
Why not failure
/error-chain
?
Error from error-chain
are not Sync
which
can lead to problems e.g. when this is used
by a crate which use failure
. Implementing
Fail
on the other hand prevents the implementation
of std::error::Error
until specialization lands
on stable. While errors impl. Fail
can be
converted to a type impl. std::error::Error
using a adapter the benefits failure
would
bring to this crate are small, which is why
std::error::Error
was used.
Variants
Fmt(Error)
formatting error
Trait Implementations
impl Debug for Error
impl Debug for Error
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Error for Error
impl Error for Error
fn description(&self) -> &str
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<Error> for Error
impl From<Error> for Error
impl Display for Error
impl Display for Error