[][src]Struct google_dialogflow2::GoogleCloudDialogflowV2IntentMessageTableCard

pub struct GoogleCloudDialogflowV2IntentMessageTableCard {
    pub buttons: Option<Vec<GoogleCloudDialogflowV2IntentMessageBasicCardButton>>,
    pub rows: Option<Vec<GoogleCloudDialogflowV2IntentMessageTableCardRow>>,
    pub subtitle: Option<String>,
    pub title: Option<String>,
    pub image: Option<GoogleCloudDialogflowV2IntentMessageImage>,
    pub column_properties: Option<Vec<GoogleCloudDialogflowV2IntentMessageColumnProperties>>,
}

Table card for Actions on Google.

This type is not used in any activity, and only used as part of another schema.

Fields

buttons: Option<Vec<GoogleCloudDialogflowV2IntentMessageBasicCardButton>>

Optional. List of buttons for the card.

rows: Option<Vec<GoogleCloudDialogflowV2IntentMessageTableCardRow>>

Optional. Rows in this table of data.

subtitle: Option<String>

Optional. Subtitle to the title.

title: Option<String>

Required. Title of the card.

image: Option<GoogleCloudDialogflowV2IntentMessageImage>

Optional. Image which should be displayed on the card.

column_properties: Option<Vec<GoogleCloudDialogflowV2IntentMessageColumnProperties>>

Optional. Display properties for the columns in this table.

Trait Implementations

impl Clone for GoogleCloudDialogflowV2IntentMessageTableCard[src]

impl Debug for GoogleCloudDialogflowV2IntentMessageTableCard[src]

impl Default for GoogleCloudDialogflowV2IntentMessageTableCard[src]

impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2IntentMessageTableCard[src]

impl Part for GoogleCloudDialogflowV2IntentMessageTableCard[src]

impl Serialize for GoogleCloudDialogflowV2IntentMessageTableCard[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any