pub struct EventStatusResult {
pub group_chat_id: Uuid,
pub sent_to: Vec<Uuid>,
pub read_by: Vec<EventReadBy>,
pub received_by: Vec<EventReceivedBy>,
}Expand description
Результат запроса статуса сообщения
Fields§
§group_chat_id: UuidИдентификатор чата
sent_to: Vec<Uuid>Список идентификаторов устройств (uuid), получивших событие
read_by: Vec<EventReadBy>Список пользователей, которые прочли сообщение
received_by: Vec<EventReceivedBy>Список пользователей, которым доставлено сообщение
Trait Implementations§
source§impl Clone for EventStatusResult
impl Clone for EventStatusResult
source§fn clone(&self) -> EventStatusResult
fn clone(&self) -> EventStatusResult
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 Debug for EventStatusResult
impl Debug for EventStatusResult
source§impl<'de> Deserialize<'de> for EventStatusResult
impl<'de> Deserialize<'de> for EventStatusResult
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 RefUnwindSafe for EventStatusResult
impl Send for EventStatusResult
impl Sync for EventStatusResult
impl Unpin for EventStatusResult
impl UnwindSafe for EventStatusResult
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