ruma_events/room/message/
emote.rs
1use serde::{Deserialize, Serialize};
2
3use super::FormattedBody;
4
5#[derive(Clone, Debug, Deserialize, Serialize)]
7#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
8pub struct EmoteMessageEventContent {
9 pub body: String,
11
12 #[serde(flatten)]
14 pub formatted: Option<FormattedBody>,
15}
16
17impl EmoteMessageEventContent {
18 pub fn plain(body: impl Into<String>) -> Self {
20 let body = body.into();
21 Self { body, formatted: None }
22 }
23
24 pub fn html(body: impl Into<String>, html_body: impl Into<String>) -> Self {
26 let body = body.into();
27 Self { body, formatted: Some(FormattedBody::html(html_body)) }
28 }
29
30 #[cfg(feature = "markdown")]
35 pub fn markdown(body: impl AsRef<str> + Into<String>) -> Self {
36 if let Some(formatted) = FormattedBody::markdown(&body) {
37 Self::html(body, formatted.body)
38 } else {
39 Self::plain(body)
40 }
41 }
42}