Struct gapi_grpc::google::actions::sdk::v2::interactionmodel::prompt::StaticTablePrompt[][src]

pub struct StaticTablePrompt {
    pub title: String,
    pub subtitle: String,
    pub image: Option<StaticImagePrompt>,
    pub columns: Vec<TableColumn>,
    pub rows: Vec<TableRow>,
    pub button: Option<StaticLinkPrompt>,
}

A table card for displaying a table of text.

Fields

title: String

Optional. Overall title of the table. Must be set if subtitle is set.

subtitle: String

Optional. Subtitle for the table.

image: Option<StaticImagePrompt>

Optional. Image associated with the table.

columns: Vec<TableColumn>

Optional. Headers and alignment of columns.

rows: Vec<TableRow>

Optional. Row data of the table. The first 3 rows are guaranteed to be shown but others might be cut on certain surfaces. Please test with the simulator to see which rows will be shown for a given surface. On surfaces that support the WEB_BROWSER capability, you can point the user to a web page with more data.

button: Option<StaticLinkPrompt>

Optional. Button.

Trait Implementations

impl Clone for StaticTablePrompt[src]

impl Debug for StaticTablePrompt[src]

impl Default for StaticTablePrompt[src]

impl Message for StaticTablePrompt[src]

impl PartialEq<StaticTablePrompt> for StaticTablePrompt[src]

impl StructuralPartialEq for StaticTablePrompt[src]

Auto Trait Implementations

impl RefUnwindSafe for StaticTablePrompt

impl Send for StaticTablePrompt

impl Sync for StaticTablePrompt

impl Unpin for StaticTablePrompt

impl UnwindSafe for StaticTablePrompt

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]