1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use crate::OwnedUserId;
#[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 {
pub user_ids: Vec<OwnedUserId>,
}
impl TypingEventContent {
pub fn new(user_ids: Vec<OwnedUserId>) -> Self {
Self { user_ids }
}
}