Struct ruma_common::events::room::message::EmoteMessageEventContent
source · pub struct EmoteMessageEventContent {
pub body: String,
pub formatted: Option<FormattedBody>,
pub message: Option<MessageContent>,
}Available on crate feature
events only.Expand description
The payload for an emote message.
With the unstable-msc1767 feature, this type contains the transitional format of
EmoteEventContent. See the documentation of the message module for more information.
Fields§
§body: StringThe emote action to perform.
formatted: Option<FormattedBody>Formatted form of the message body.
message: Option<MessageContent>Available on crate feature
unstable-msc1767 only.Extensible-event representation of the message.
If present, this should be preferred over the other fields.
Implementations§
Trait Implementations§
source§impl Clone for EmoteMessageEventContent
impl Clone for EmoteMessageEventContent
source§fn clone(&self) -> EmoteMessageEventContent
fn clone(&self) -> EmoteMessageEventContent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EmoteMessageEventContent
impl Debug for EmoteMessageEventContent
source§impl<'de> Deserialize<'de> for EmoteMessageEventContent
impl<'de> Deserialize<'de> for EmoteMessageEventContent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<MessageContent> for EmoteMessageEventContent
Available on crate feature unstable-msc1767 only.
impl From<MessageContent> for EmoteMessageEventContent
Available on crate feature
unstable-msc1767 only.source§fn from(message: MessageContent) -> Self
fn from(message: MessageContent) -> Self
Converts to this type from the input type.