Struct gtmpl::Template[][src]

pub struct Template {
    pub name: String,
    pub text: String,
    pub funcs: HashMap<String, Func>,
    pub tree_set: HashMap<String, Tree>,
}
Expand description

The main template structure.

Fields

name: Stringtext: Stringfuncs: HashMap<String, Func>tree_set: HashMap<String, Tree>

Implementations

Creates a new empty template with a given name.

Adds a single custom function to the template.

Example

use gtmpl::{Context, Func, FuncError, Value};

fn hello_world(_args: &[Value]) -> Result<Value, FuncError> {
  Ok(Value::from("Hello World!"))
}

let mut tmpl = gtmpl::Template::default();
tmpl.add_func("helloWorld", hello_world);
tmpl.parse("{{ helloWorld }}").unwrap();
let output = tmpl.render(&Context::empty());
assert_eq!(&output.unwrap(), "Hello World!");

Adds custom functions to the template.

Example

use std::collections::HashMap;

use gtmpl::{Context, Func, FuncError, Value};

fn hello_world(_args: &[Value]) -> Result<Value, FuncError> {
  Ok(Value::from("Hello World!"))
}

let funcs = vec![("helloWorld", hello_world as Func)];
let mut tmpl = gtmpl::Template::default();
tmpl.add_funcs(&funcs);
tmpl.parse("{{ helloWorld }}").unwrap();
let output = tmpl.render(&Context::empty());
assert_eq!(&output.unwrap(), "Hello World!");

Parse the given text as template body.

Example

let mut tmpl = gtmpl::Template::default();
tmpl.parse("Hello World!").unwrap();

Add the given text as a template with a name.

Example

use gtmpl::Context;

let mut tmpl = gtmpl::Template::default();
tmpl.add_template("fancy", "{{ . }}");
tmpl.parse(r#"{{ template "fancy" . }}!"#).unwrap();
let output = tmpl.render(&Context::from("Hello World"));
assert_eq!(&output.unwrap(), "Hello World!");

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.