#[non_exhaustive]pub struct MarkedUnreadEventContent {
pub unread: bool,
}Expand description
The content of an m.marked_unread event.
Whether the room has been explicitly marked as unread.
This event appears in the user’s room account data for the room the marker is applicable for.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.unread: boolThe current unread state.
Implementations§
Trait Implementations§
Source§impl Clone for MarkedUnreadEventContent
impl Clone for MarkedUnreadEventContent
Source§fn clone(&self) -> MarkedUnreadEventContent
fn clone(&self) -> MarkedUnreadEventContent
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 MarkedUnreadEventContent
impl Debug for MarkedUnreadEventContent
Source§impl<'de> Deserialize<'de> for MarkedUnreadEventContent
impl<'de> Deserialize<'de> for MarkedUnreadEventContent
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
Source§impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
Source§fn from(c: MarkedUnreadEventContent) -> Self
fn from(c: MarkedUnreadEventContent) -> Self
Converts to this type from the input type.
Source§impl From<MarkedUnreadEventContent> for UnstableMarkedUnreadEventContent
Available on crate feature unstable-msc2867 only.
impl From<MarkedUnreadEventContent> for UnstableMarkedUnreadEventContent
Available on crate feature
unstable-msc2867 only.Source§fn from(value: MarkedUnreadEventContent) -> Self
fn from(value: MarkedUnreadEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMarkedUnreadEventContent> for MarkedUnreadEventContent
Available on crate feature unstable-msc2867 only.
impl From<UnstableMarkedUnreadEventContent> for MarkedUnreadEventContent
Available on crate feature
unstable-msc2867 only.Source§fn from(value: UnstableMarkedUnreadEventContent) -> Self
fn from(value: UnstableMarkedUnreadEventContent) -> Self
Converts to this type from the input type.
Source§impl RoomAccountDataEventContent for MarkedUnreadEventContent
impl RoomAccountDataEventContent for MarkedUnreadEventContent
Source§fn event_type(&self) -> RoomAccountDataEventType
fn event_type(&self) -> RoomAccountDataEventType
Get the event’s type, like
m.tag.Source§impl Serialize for MarkedUnreadEventContent
impl Serialize for MarkedUnreadEventContent
impl JsonCastable<AnyRoomAccountDataEventContent> for MarkedUnreadEventContent
impl JsonCastable<Map<String, Value>> for MarkedUnreadEventContent
Auto Trait Implementations§
impl Freeze for MarkedUnreadEventContent
impl RefUnwindSafe for MarkedUnreadEventContent
impl Send for MarkedUnreadEventContent
impl Sync for MarkedUnreadEventContent
impl Unpin for MarkedUnreadEventContent
impl UnwindSafe for MarkedUnreadEventContent
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