[][src]Struct csml_interpreter::data::data::Data

pub struct Data<'a> {
    pub flows: &'a HashMap<String, Flow>,
    pub flow: &'a Flow,
    pub context: &'a mut Context,
    pub event: &'a Event,
    pub step_vars: HashMap<String, Literal>,
    pub custom_component: &'a Map<String, Value>,
    pub native_component: &'a Map<String, Value>,
}

Fields

flows: &'a HashMap<String, Flow>flow: &'a Flowcontext: &'a mut Contextevent: &'a Eventstep_vars: HashMap<String, Literal>custom_component: &'a Map<String, Value>native_component: &'a Map<String, Value>

Implementations

impl<'a> Data<'a>[src]

pub fn new(
    flows: &'a HashMap<String, Flow>,
    flow: &'a Flow,
    context: &'a mut Context,
    event: &'a Event,
    step_vars: HashMap<String, Literal>,
    custom_component: &'a Map<String, Value>,
    native_component: &'a Map<String, Value>
) -> Self
[src]

Trait Implementations

impl<'a> Debug for Data<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Data<'a>

impl<'a> !Send for Data<'a>

impl<'a> !Sync for Data<'a>

impl<'a> Unpin for Data<'a>

impl<'a> !UnwindSafe for Data<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,