[][src]Struct tera::Context

pub struct Context { /* fields omitted */ }

The struct that holds the context of a template rendering.

Light wrapper around a BTreeMap for easier insertions of Serializable values

Methods

impl Context[src]

pub fn new() -> Context[src]

Initializes an empty context

pub fn insert<T: Serialize + ?Sized>(&mut self, key: &str, val: &T)[src]

Converts the val parameter to Value and insert it into the context

This example is not tested
let mut context = Context::new();
// user is an instance of a struct implementing `Serialize`
context.insert("number_users", 42);

pub fn extend(&mut self, source: Context)[src]

Appends the data of the source parameter to self, overwriting existing keys. The source context will be dropped.

This example is not tested
let mut target = Context::new();
target.insert("a", 1);
target.insert("b", 2);
let mut source = Context::new();
source.insert("b", 3);
source.insert("d", 4);
target.extend(source);

pub fn into_json(self) -> Value[src]

Converts the context to a serde_json::Value consuming the context

Trait Implementations

impl Clone for Context[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Context> for Context[src]

impl Default for Context[src]

impl Debug for Context[src]

Auto Trait Implementations

impl Send for Context

impl Sync for Context

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]