Enum twig::error::EngineError [] [src]

pub enum EngineError {
    TemplateNotFound {
        name: String,
        search_paths: Vec<PathBuf>,
    },
}

Variants

TemplateNotFound

Fields

name
search_paths

Methods

impl EngineError

fn caused_by<I: Into<Error>>(self, cause: I) -> Caused<EngineError>

Trait Implementations

impl Display for EngineError

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl Debug for EngineError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for EngineError

fn clone(&self) -> EngineError

fn clone_from(&mut self, source: &Self)