pub struct SentMessage {
pub destination: String,
pub timestamp: i64,
pub expiration_start_timestamp: i64,
pub message: Message,
pub unidentified_status: HashMap<String, bool>,
pub is_recipient_update: bool,
}
Fields§
§destination: String
§timestamp: i64
§expiration_start_timestamp: i64
§message: Message
§unidentified_status: HashMap<String, bool>
§is_recipient_update: bool
Trait Implementations§
Source§impl Clone for SentMessage
impl Clone for SentMessage
Source§fn clone(&self) -> SentMessage
fn clone(&self) -> SentMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for SentMessage
impl Default for SentMessage
Source§fn default() -> SentMessage
fn default() -> SentMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SentMessage
impl<'de> Deserialize<'de> for SentMessage
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 SentMessage
impl RefUnwindSafe for SentMessage
impl Send for SentMessage
impl Sync for SentMessage
impl Unpin for SentMessage
impl UnwindSafe for SentMessage
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