26 lines
834 B
Rust
26 lines
834 B
Rust
//! Types for the [`m.typing`] event.
|
|
//!
|
|
//! [`m.typing`]: https://spec.matrix.org/latest/client-server-api/#mtyping
|
|
|
|
use ruma_common::OwnedUserId;
|
|
use ruma_macros::EventContent;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// The content of an `m.typing` event.
|
|
///
|
|
/// Informs the client who is currently typing in a given room.
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize, EventContent)]
|
|
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
|
|
#[ruma_event(type = "m.typing", kind = EphemeralRoom)]
|
|
pub struct TypingEventContent {
|
|
/// The list of user IDs typing in this room, if any.
|
|
pub user_ids: Vec<OwnedUserId>,
|
|
}
|
|
|
|
impl TypingEventContent {
|
|
/// Creates a new `TypingEventContent` with the given user IDs.
|
|
pub fn new(user_ids: Vec<OwnedUserId>) -> Self {
|
|
Self { user_ids }
|
|
}
|
|
}
|