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
use serde::{Deserialize, Serialize};
use crate::OwnedEventId;
pub mod end;
pub mod response;
pub mod start;
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[serde(tag = "rel_type", rename = "m.reference")]
pub struct ReferenceRelation {
pub event_id: OwnedEventId,
}
impl ReferenceRelation {
pub fn new(event_id: OwnedEventId) -> Self {
Self { event_id }
}
}