1//! Types for the [`m.dummy`] event.
2//!
3//! [`m.dummy`]: https://spec.matrix.org/latest/client-server-api/#mdummy
45use std::fmt;
67use ruma_macros::EventContent;
8use serde::{
9 de::{self, Deserialize, Deserializer},
10 ser::{Serialize, SerializeStruct as _, Serializer},
11};
1213/// The content of an `m.dummy` event.
14///
15/// This event is used to indicate new Olm sessions for end-to-end encryption.
16///
17/// Typically it is encrypted as an `m.room.encrypted` event, then sent as a to-device event.
18///
19/// The event does not have any content associated with it. The sending client is expected to
20/// send a key share request shortly after this message, causing the receiving client to process
21/// this `m.dummy` event as the most recent event and using the keyshare request to set up the
22/// session. The keyshare request and `m.dummy` combination should result in the original sending
23/// client receiving keys over the newly established session.
24#[derive(Clone, Debug, Default, EventContent)]
25#[allow(clippy::exhaustive_structs)]
26#[ruma_event(type = "m.dummy", kind = ToDevice)]
27pub struct ToDeviceDummyEventContent;
2829impl ToDeviceDummyEventContent {
30/// Create a new `ToDeviceDummyEventContent`.
31pub fn new() -> Self {
32Self
33}
34}
3536impl<'de> Deserialize<'de> for ToDeviceDummyEventContent {
37fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
38where
39D: Deserializer<'de>,
40 {
41struct Visitor;
4243impl<'de> de::Visitor<'de> for Visitor {
44type Value = ToDeviceDummyEventContent;
4546fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
47 formatter.write_str("a struct")
48 }
4950fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
51where
52A: de::MapAccess<'de>,
53 {
54while map.next_entry::<de::IgnoredAny, de::IgnoredAny>()?.is_some() {}
55Ok(ToDeviceDummyEventContent)
56 }
57 }
5859 deserializer.deserialize_struct("ToDeviceDummyEventContent", &[], Visitor)
60 }
61}
6263impl Serialize for ToDeviceDummyEventContent {
64fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
65where
66S: Serializer,
67 {
68 serializer.serialize_struct("ToDeviceDummyEventContent", 0)?.end()
69 }
70}