ruma_events/room/
topic.rs

1//! Types for the [`m.room.topic`] event.
2//!
3//! [`m.room.topic`]: https://spec.matrix.org/latest/client-server-api/#mroomtopic
4
5use ruma_macros::EventContent;
6use serde::{Deserialize, Serialize};
7
8use crate::EmptyStateKey;
9
10/// The content of an `m.room.topic` event.
11///
12/// A topic is a short message detailing what is currently being discussed in the room.
13#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
14#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
15#[ruma_event(type = "m.room.topic", kind = State, state_key_type = EmptyStateKey)]
16pub struct RoomTopicEventContent {
17    /// The topic text.
18    pub topic: String,
19}
20
21impl RoomTopicEventContent {
22    /// Creates a new `RoomTopicEventContent` with the given topic.
23    pub fn new(topic: String) -> Self {
24        Self { topic }
25    }
26}