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

pub struct ExecutionEvent {
    pub event_time: Option<Timestamp>,
    pub execution_state: Option<ExecutionState>,
    pub status: Option<Status>,
    pub warning_messages: Vec<String>,
    pub event_data: Option<EventData>,
}

Contains information about execution event which happened during processing Actions Builder conversation request. For an overview of the stages involved in a conversation request, see https://developers.google.com/assistant/conversational/actions.

Fields

event_time: Option<Timestamp>

Timestamp when the event happened.

execution_state: Option<ExecutionState>

State of the execution during this event.

status: Option<Status>

Resulting status of particular execution step.

warning_messages: Vec<String>

List of warnings generated during execution of this Event. Warnings are tips for the developer discovered during the conversation request. These are usually non-critical and do not halt the execution of the request. For example, a warnings might be generated when webhook tries to override a custom Type which does not exist. Errors are reported as a failed status code, but warnings can be present even when the status is OK.

event_data: Option<EventData>

Detailed information specific to different of events that may be involved in processing a conversation round. The field set here defines the type of this event.

Trait Implementations

impl Clone for ExecutionEvent[src]

impl Debug for ExecutionEvent[src]

impl Default for ExecutionEvent[src]

impl Message for ExecutionEvent[src]

impl PartialEq<ExecutionEvent> for ExecutionEvent[src]

impl StructuralPartialEq for ExecutionEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for ExecutionEvent

impl Send for ExecutionEvent

impl Sync for ExecutionEvent

impl Unpin for ExecutionEvent

impl UnwindSafe for ExecutionEvent

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]