Struct mustache::Context [] [src]

pub struct Context {
    pub template_path: PathBuf,
    pub template_extension: String,
}

Represents the shared metadata needed to compile and render a mustache template.

Fields

template_path
template_extension

Methods

impl Context

fn new(path: PathBuf) -> Context

Configures a mustache context the specified path to the templates.

fn compile<IT: Iterator<Item=char>>(&self, reader: IT) -> Template

Compiles a template from a string

fn compile_path<U: AsRef<Path>>(&self, path: U) -> Result<Template, Error>

Compiles a template from a path.

Trait Implementations

impl Debug for Context

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

Derived Implementations

impl Clone for Context

fn clone(&self) -> Context

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