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
35
36
37
38
39
40
41
use ruma_events_macros::BasicEventContent;
#[cfg(feature = "unstable-pre-spec")]
use ruma_events_macros::MessageEventContent;
use serde::{Deserialize, Serialize};
#[cfg(feature = "unstable-pre-spec")]
use super::Relation;
#[cfg(feature = "unstable-pre-spec")]
use crate::MessageEvent;
#[cfg(feature = "unstable-pre-spec")]
pub type KeyEvent = MessageEvent<KeyEventContent>;
#[derive(Clone, Debug, Deserialize, Serialize, BasicEventContent)]
#[ruma_event(type = "m.key.verification.key")]
pub struct KeyToDeviceEventContent {
pub transaction_id: String,
pub key: String,
}
#[derive(Clone, Debug, Deserialize, Serialize, MessageEventContent)]
#[ruma_event(type = "m.key.verification.key")]
#[cfg(feature = "unstable-pre-spec")]
pub struct KeyEventContent {
pub key: String,
#[serde(rename = "m.relates_to")]
pub relation: Relation,
}