1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Types for the *m.tag* event.

use std::collections::HashMap;

event! {
    /// Informs the client of tags on a room.
    pub struct TagEvent(TagEventContent) {}
}

/// The payload of a `TagEvent`.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct TagEventContent {
    /// A map of tag names to tag info.
    pub tags: HashMap<String, TagInfo>,
}

/// Information about a tag.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct TagInfo {
    /// Value to use for lexicographically ordering rooms with this tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub order: Option<String>,
}