Struct google_gmail1::api::MessagePart [−][src]
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]
fn clone(&self) -> MessagePart[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for MessagePart[src]
impl Default for MessagePart[src]
fn default() -> MessagePart[src]
impl<'de> Deserialize<'de> for MessagePart[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for MessagePart[src]
impl Serialize for MessagePart[src]
Auto Trait Implementations
impl RefUnwindSafe for MessagePart
impl Send for MessagePart
impl Sync for MessagePart
impl Unpin for MessagePart
impl UnwindSafe for MessagePart
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,