pub struct MessageStatusSyncPayload {
pub message_id: Option<u64>,
pub server_message_id: Option<u64>,
pub id: Option<u64>,
pub channel_id: Option<u64>,
pub channel_type: Option<i32>,
pub type_field: Option<i32>,
pub conversation_type: Option<i32>,
pub status: Option<i32>,
pub readed: Option<bool>,
pub is_read: Option<bool>,
pub read: Option<bool>,
}Fields§
§message_id: Option<u64>§server_message_id: Option<u64>§id: Option<u64>§channel_id: Option<u64>§channel_type: Option<i32>§type_field: Option<i32>§conversation_type: Option<i32>§status: Option<i32>§readed: Option<bool>§is_read: Option<bool>§read: Option<bool>Trait Implementations§
Source§impl Clone for MessageStatusSyncPayload
impl Clone for MessageStatusSyncPayload
Source§fn clone(&self) -> MessageStatusSyncPayload
fn clone(&self) -> MessageStatusSyncPayload
Returns a duplicate 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 Debug for MessageStatusSyncPayload
impl Debug for MessageStatusSyncPayload
Source§impl Default for MessageStatusSyncPayload
impl Default for MessageStatusSyncPayload
Source§fn default() -> MessageStatusSyncPayload
fn default() -> MessageStatusSyncPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageStatusSyncPayload
impl<'de> Deserialize<'de> for MessageStatusSyncPayload
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 MessageStatusSyncPayload
impl RefUnwindSafe for MessageStatusSyncPayload
impl Send for MessageStatusSyncPayload
impl Sync for MessageStatusSyncPayload
impl Unpin for MessageStatusSyncPayload
impl UnsafeUnpin for MessageStatusSyncPayload
impl UnwindSafe for MessageStatusSyncPayload
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