pub struct Message {
pub conversation_id: String,
pub conversation_title: String,
pub from: String,
pub sender_profile_url: String,
pub to: String,
pub recipient_profile_urls: String,
pub date: String,
pub subject: String,
pub content: String,
pub folder: String,
pub is_message_draft: String,
}
Fields§
§conversation_id: String
§conversation_title: String
§from: String
§sender_profile_url: String
§to: String
§recipient_profile_urls: String
§date: String
§subject: String
§content: String
§folder: String
§is_message_draft: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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