pub struct Post {Show 13 fields
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: ItemBody
§received_date_time: String
§has_attachments: bool
§from: Recipient
§sender: Recipient
§conversation_thread_id: String
§new_participants: Vec<Recipient>
§conversation_id: String
§extensions: Vec<Extension>
§in_reply_to: Box<Post>
§attachments: Vec<Attachment>
§single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>
§multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Post
impl<'de> Deserialize<'de> for Post
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Post
impl StructuralPartialEq for Post
Auto Trait Implementations§
impl Freeze for Post
impl RefUnwindSafe for Post
impl Send for Post
impl Sync for Post
impl Unpin for Post
impl UnwindSafe for Post
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more