Struct google_gmail1::api::MessagePart[][src]

pub struct MessagePart {
    pub body: Option<MessagePartBody>,
    pub filename: Option<String>,
    pub headers: Option<Vec<MessagePartHeader>>,
    pub mime_type: Option<String>,
    pub part_id: Option<String>,
    pub parts: Option<Vec<MessagePart>>,
}

A single MIME message part.

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

Fields

body: Option<MessagePartBody>

The message part body for this part, which may be empty for container MIME message parts.

filename: Option<String>

The filename of the attachment. Only present if this message part represents an attachment.

headers: Option<Vec<MessagePartHeader>>

List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as To, From, and Subject.

mime_type: Option<String>

The MIME type of the message part.

part_id: Option<String>

The immutable ID of the message part.

parts: Option<Vec<MessagePart>>

The child MIME message parts of this part. This only applies to container MIME message parts, for example multipart/*. For non- container MIME message part types, such as text/plain, this field is empty. For more information, see RFC 1521.

Trait Implementations

impl Clone for MessagePart[src]

impl Debug for MessagePart[src]

impl Default for MessagePart[src]

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

impl Part for MessagePart[src]

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