pub struct EventReadBy {
pub user_huid: Uuid,
pub read_at: DateTime<Utc>,
}Expand description
Информация о пользователе, который прочел сообщение
Fields§
§user_huid: Uuidhuid пользователя прочитавшего событие
read_at: DateTime<Utc>Время прочтения
Trait Implementations§
Source§impl Clone for EventReadBy
impl Clone for EventReadBy
Source§fn clone(&self) -> EventReadBy
fn clone(&self) -> EventReadBy
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 EventReadBy
impl Debug for EventReadBy
Source§impl<'de> Deserialize<'de> for EventReadBy
impl<'de> Deserialize<'de> for EventReadBy
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 EventReadBy
impl RefUnwindSafe for EventReadBy
impl Send for EventReadBy
impl Sync for EventReadBy
impl Unpin for EventReadBy
impl UnwindSafe for EventReadBy
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