ruma_common/room.rs
1//! Common types for rooms.
2
3use crate::{serde::StringEnum, PrivOwnedStr};
4
5/// An enum of possible room types.
6#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
7#[derive(Clone, PartialEq, Eq, StringEnum)]
8#[non_exhaustive]
9pub enum RoomType {
10 /// Defines the room as a space.
11 #[ruma_enum(rename = "m.space")]
12 Space,
13
14 /// Defines the room as a custom type.
15 #[doc(hidden)]
16 _Custom(PrivOwnedStr),
17}