[][src]Struct graph_rs_types::entitytypes::Post

pub struct Post {
    pub body: ItemBody,
    pub received_date_time: String,
    pub has_attachments: bool,
    pub from: Recipient,
    pub sender: Recipient,
    pub conversation_thread_id: String,
    pub new_participants: Vec<Recipient>,
    pub conversation_id: String,
    pub extensions: Vec<Extension>,
    pub in_reply_to: Box<Post>,
    pub attachments: Vec<Attachment>,
    pub single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>,
    pub multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>,
}

Fields

body: ItemBodyreceived_date_time: Stringhas_attachments: boolfrom: Recipientsender: Recipientconversation_thread_id: Stringnew_participants: Vec<Recipient>conversation_id: Stringextensions: Vec<Extension>in_reply_to: Box<Post>attachments: Vec<Attachment>single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>

Trait Implementations

impl Eq for Post[src]

impl Clone for Post[src]

impl PartialEq<Post> for Post[src]

impl Debug for Post[src]

impl Serialize for Post[src]

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

Auto Trait Implementations

impl Send for Post

impl Unpin for Post

impl Sync for Post

impl RefUnwindSafe for Post

impl UnwindSafe for Post

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]