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
27
28
29
30
31
32
33
34
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use crate::{events::EmptyStateKey, OwnedRoomId};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[ruma_event(type = "m.room.tombstone", kind = State, state_key_type = EmptyStateKey)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct RoomTombstoneEventContent {
#[cfg_attr(feature = "compat", serde(default))]
pub body: String,
pub replacement_room: OwnedRoomId,
}
impl RoomTombstoneEventContent {
pub fn new(body: String, replacement_room: OwnedRoomId) -> Self {
Self { body, replacement_room }
}
}