Struct gapi_grpc::google::actions::sdk::v2::ExecutionState[][src]

pub struct ExecutionState {
    pub current_scene_id: String,
    pub session_storage: Option<Struct>,
    pub slots: Option<Slots>,
    pub prompt_queue: Vec<Prompt>,
    pub user_storage: Option<Struct>,
    pub household_storage: Option<Struct>,
}

Current state of the execution.

Fields

current_scene_id: String

ID of the scene which is currently active.

session_storage: Option<Struct>

State of the session storage: https://developers.google.com/assistant/conversational/storage-session

slots: Option<Slots>

State of the slots filling, if applicable: https://developers.google.com/assistant/conversational/scenes#slot_filling

prompt_queue: Vec<Prompt>

Prompt queue: https://developers.google.com/assistant/conversational/prompts

user_storage: Option<Struct>

State of the user storage: https://developers.google.com/assistant/conversational/storage-user

household_storage: Option<Struct>

State of the home storage: https://developers.google.com/assistant/conversational/storage-home

Trait Implementations

impl Clone for ExecutionState[src]

impl Debug for ExecutionState[src]

impl Default for ExecutionState[src]

impl Message for ExecutionState[src]

impl PartialEq<ExecutionState> for ExecutionState[src]

impl StructuralPartialEq for ExecutionState[src]

Auto Trait Implementations

impl RefUnwindSafe for ExecutionState

impl Send for ExecutionState

impl Sync for ExecutionState

impl Unpin for ExecutionState

impl UnwindSafe for ExecutionState

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]