[][src]Struct google_chat1::KeyValue

pub struct KeyValue {
    pub content_multiline: Option<bool>,
    pub bottom_label: Option<String>,
    pub top_label: Option<String>,
    pub button: Option<Button>,
    pub content: Option<String>,
    pub icon_url: Option<String>,
    pub on_click: Option<OnClick>,
    pub icon: Option<String>,
}

A UI element contains a key (label) and a value (content). And this element may also contain some actions such as onclick button.

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

Fields

content_multiline: Option<bool>

If the content should be multiline.

bottom_label: Option<String>

The text of the bottom label. Formatted text supported.

top_label: Option<String>

The text of the top label. Formatted text supported.

button: Option<Button>

A button that can be clicked to trigger an action.

content: Option<String>

The text of the content. Formatted text supported and always required.

icon_url: Option<String>

The icon specified by a URL.

on_click: Option<OnClick>

The onclick action. Only the top label, bottom label and content region are clickable.

icon: Option<String>

An enum value that will be replaced by the Chat API with the corresponding icon image.

Trait Implementations

impl Clone for KeyValue[src]

impl Debug for KeyValue[src]

impl Default for KeyValue[src]

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

impl Part for KeyValue[src]

impl Serialize for KeyValue[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