ruma_events/fully_read.rs
1//! Types for the [`m.fully_read`] event.
2//!
3//! [`m.fully_read`]: https://spec.matrix.org/latest/client-server-api/#mfully_read
4
5use ruma_common::OwnedEventId;
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
8
9/// The content of an `m.fully_read` event.
10///
11/// The current location of the user's read marker in a room.
12///
13/// This event appears in the user's room account data for the room the marker is applicable for.
14#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
15#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
16#[ruma_event(type = "m.fully_read", kind = RoomAccountData)]
17pub struct FullyReadEventContent {
18 /// The event the user's read marker is located at in the room.
19 pub event_id: OwnedEventId,
20}
21
22impl FullyReadEventContent {
23 /// Creates a new `FullyReadEventContent` with the given event ID.
24 pub fn new(event_id: OwnedEventId) -> Self {
25 Self { event_id }
26 }
27}