Struct google_gmail1::api::Thread[][src]

pub struct Thread {
    pub history_id: Option<String>,
    pub id: Option<String>,
    pub messages: Option<Vec<Message>>,
    pub snippet: Option<String>,
}

A collection of messages representing a conversation.

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

history_id: Option<String>

The ID of the last history record that modified this thread.

id: Option<String>

The unique ID of the thread.

messages: Option<Vec<Message>>

The list of messages in the thread.

snippet: Option<String>

A short part of the message text.

Trait Implementations

impl Clone for Thread[src]

impl Debug for Thread[src]

impl Default for Thread[src]

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

impl ResponseResult for Thread[src]

impl Serialize for Thread[src]

Auto Trait Implementations

impl RefUnwindSafe for Thread[src]

impl Send for Thread[src]

impl Sync for Thread[src]

impl Unpin for Thread[src]

impl UnwindSafe for Thread[src]

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.