Struct gapi_grpc::google::actions::sdk::v2::interactionmodel::GlobalIntentEvent[][src]

pub struct GlobalIntentEvent {
    pub transition_to_scene: String,
    pub handler: Option<EventHandler>,
}

Defines a global intent handler. Global intent events are scoped to the entire Actions project and may be overridden by intent handlers in a scene. Intent names must be unique within an Actions project.

Global intents can be matched anytime during a session, allowing users to access common flows like “get help” or “go back home.” They can also be used to deep link users into specific flows when they invoke an Action.

Note, the intent name is specified in the name of the file.

Fields

transition_to_scene: String

Optional. Destination scene which the conversation should jump to. The state of the current scene is destroyed on the transition.

handler: Option<EventHandler>

Optional. Event handler which is triggered when the intent is matched. Should execute before transitioning to the destination scene. Useful to generate Prompts in response to events.

Trait Implementations

impl Clone for GlobalIntentEvent[src]

impl Debug for GlobalIntentEvent[src]

impl Default for GlobalIntentEvent[src]

impl Message for GlobalIntentEvent[src]

impl PartialEq<GlobalIntentEvent> for GlobalIntentEvent[src]

impl StructuralPartialEq for GlobalIntentEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for GlobalIntentEvent

impl Send for GlobalIntentEvent

impl Sync for GlobalIntentEvent

impl Unpin for GlobalIntentEvent

impl UnwindSafe for GlobalIntentEvent

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]