[−][src]Struct tera::Context
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);
Trait Implementations
impl Clone for Context
[src]
impl Debug for Context
[src]
impl Default for Context
[src]
impl PartialEq<Context> for Context
[src]
impl Serialize for Context
[src]
impl StructuralPartialEq for Context
[src]
Auto Trait Implementations
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,