1//! Types for the [`m.room.topic`] event.
2//!
3//! [`m.room.topic`]: https://spec.matrix.org/latest/client-server-api/#mroomtopic
45use ruma_macros::EventContent;
6use serde::{Deserialize, Serialize};
78use crate::EmptyStateKey;
910/// 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.
18pub topic: String,
19}
2021impl RoomTopicEventContent {
22/// Creates a new `RoomTopicEventContent` with the given topic.
23pub fn new(topic: String) -> Self {
24Self { topic }
25 }
26}