Struct google_chat1::api::Attachment[][src]

pub struct Attachment {
    pub attachment_data_ref: Option<AttachmentDataRef>,
    pub content_name: Option<String>,
    pub content_type: Option<String>,
    pub download_uri: Option<String>,
    pub drive_data_ref: Option<DriveDataRef>,
    pub name: Option<String>,
    pub source: Option<String>,
    pub thumbnail_uri: Option<String>,
}

An attachment in Hangouts Chat.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

attachment_data_ref: Option<AttachmentDataRef>

A reference to the attachment data. This is used with the media API to download the attachment data.

content_name: Option<String>

The original file name for the content, not the full path.

content_type: Option<String>

The content type (MIME type) of the file.

download_uri: Option<String>

Output only. The download URL which should be used to allow a human user to download the attachment. Bots should not use this URL to download attachment content.

drive_data_ref: Option<DriveDataRef>

A reference to the drive attachment. This is used with the Drive API.

name: Option<String>

Resource name of the attachment, in the form “spaces//messages//attachments/*”.

source: Option<String>

The source of the attachment.

thumbnail_uri: Option<String>

Output only. The thumbnail URL which should be used to preview the attachment to a human user. Bots should not use this URL to download attachment content.

Trait Implementations

impl Clone for Attachment[src]

impl Debug for Attachment[src]

impl Default for Attachment[src]

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

impl ResponseResult for Attachment[src]

impl Serialize for Attachment[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> Instrument 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.