[][src]Struct liquid_interpreter::ContextBuilder

pub struct ContextBuilder<'g> { /* fields omitted */ }

Create processing context for a template.

Methods

impl<'g> ContextBuilder<'g>
[src]

pub fn new() -> Self
[src]

Creates a new, empty rendering context.

pub fn set_globals(self, values: &'g dyn ValueStore) -> Self
[src]

Initialize the stack with the given globals.

pub fn set_partials(self, values: &'g dyn PartialStore) -> Self
[src]

Initialize partial-templates availible for including.

pub fn build(self) -> Context<'g>
[src]

Create the Context.

Trait Implementations

impl<'g> Default for ContextBuilder<'g>
[src]

Auto Trait Implementations

impl<'g> !Send for ContextBuilder<'g>

impl<'g> !Sync for ContextBuilder<'g>

Blanket Implementations

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

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: Any
[src]