Struct tera::Context [−][src]
pub struct Context { /* fields omitted */ }
Expand description
The struct that holds the context of a template rendering.
Light wrapper around a BTreeMap
for easier insertions of Serializable
values
Implementations
impl Context
[src]
impl Context
[src]pub fn insert<T: Serialize + ?Sized>(&mut self, key: &str, val: &T)
[src]
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
ⓘ
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]
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.
ⓘ
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 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> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more