ruma_events/
typing.rs

1//! Types for the [`m.typing`] event.
2//!
3//! [`m.typing`]: https://spec.matrix.org/latest/client-server-api/#mtyping
4
5use ruma_common::OwnedUserId;
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
8
9/// The content of an `m.typing` event.
10///
11/// Informs the client who is currently typing in a given room.
12#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
13#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
14#[ruma_event(type = "m.typing", kind = EphemeralRoom)]
15pub struct TypingEventContent {
16    /// The list of user IDs typing in this room, if any.
17    pub user_ids: Vec<OwnedUserId>,
18}
19
20impl TypingEventContent {
21    /// Creates a new `TypingEventContent` with the given user IDs.
22    pub fn new(user_ids: Vec<OwnedUserId>) -> Self {
23        Self { user_ids }
24    }
25}