[][src]Struct graph_rs_types::entitytypes::Message

pub struct Message {
    pub received_date_time: String,
    pub sent_date_time: String,
    pub has_attachments: bool,
    pub internet_message_id: String,
    pub internet_message_headers: Vec<InternetMessageHeader>,
    pub subject: String,
    pub body: ItemBody,
    pub body_preview: String,
    pub importance: Importance,
    pub parent_folder_id: String,
    pub sender: Recipient,
    pub from: Recipient,
    pub to_recipients: Vec<Recipient>,
    pub cc_recipients: Vec<Recipient>,
    pub bcc_recipients: Vec<Recipient>,
    pub reply_to: Vec<Recipient>,
    pub conversation_id: String,
    pub unique_body: ItemBody,
    pub is_delivery_receipt_requested: bool,
    pub is_read_receipt_requested: bool,
    pub is_read: bool,
    pub is_draft: bool,
    pub web_link: String,
    pub inference_classification: InferenceClassificationType,
    pub flag: FollowupFlag,
    pub attachments: Vec<Attachment>,
    pub extensions: Vec<Extension>,
    pub single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>,
    pub multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>,
}

Fields

received_date_time: Stringsent_date_time: Stringhas_attachments: boolinternet_message_id: Stringinternet_message_headers: Vec<InternetMessageHeader>subject: Stringbody: ItemBodybody_preview: Stringimportance: Importanceparent_folder_id: Stringsender: Recipientfrom: Recipientto_recipients: Vec<Recipient>cc_recipients: Vec<Recipient>bcc_recipients: Vec<Recipient>reply_to: Vec<Recipient>conversation_id: Stringunique_body: ItemBodyis_delivery_receipt_requested: boolis_read_receipt_requested: boolis_read: boolis_draft: boolweb_link: Stringinference_classification: InferenceClassificationTypeflag: FollowupFlagattachments: Vec<Attachment>extensions: Vec<Extension>single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>

Trait Implementations

impl Eq for Message[src]

impl Clone for Message[src]

impl PartialEq<Message> for Message[src]

impl Debug for Message[src]

impl Serialize for Message[src]

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

Auto Trait Implementations

impl Send for Message

impl Unpin for Message

impl Sync for Message

impl RefUnwindSafe for Message

impl UnwindSafe for Message

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]