[][src]Struct sapper_std::WebContext

pub struct WebContext { /* 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>(&mut self, key: &str, val: &T) where
    T: Serialize + ?Sized
[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 PartialEq<Context> for Context[src]

impl Clone for Context[src]

impl Default for Context[src]

impl Serialize for Context[src]

impl Debug for Context[src]

Auto Trait Implementations

impl Send for Context

impl Sync for Context

impl Unpin for Context

impl UnwindSafe for Context

impl RefUnwindSafe for Context

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any