Struct liquid_core::runtime::StackFrame[][src]

pub struct StackFrame<P, O> { /* fields omitted */ }

Layer variables on top of the existing runtime

Implementations

impl<P: Runtime, O: ObjectView> StackFrame<P, O>[src]

pub fn new(parent: P, data: O) -> Self[src]

Layer variables on top of the existing runtime

pub fn with_name<S: Into<KString>>(self, name: S) -> Self[src]

Name the current context

Trait Implementations

impl<P: Runtime, O: ObjectView> Runtime for StackFrame<P, O>[src]

Auto Trait Implementations

impl<P, O> RefUnwindSafe for StackFrame<P, O> where
    O: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, O> Send for StackFrame<P, O> where
    O: Send,
    P: Send

impl<P, O> Sync for StackFrame<P, O> where
    O: Sync,
    P: Sync

impl<P, O> Unpin for StackFrame<P, O> where
    O: Unpin,
    P: Unpin

impl<P, O> UnwindSafe for StackFrame<P, O> where
    O: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

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

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

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

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

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

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

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.