Struct ruma_events::emote::EmoteEventContent
source · pub struct EmoteEventContent {
pub text: TextContentBlock,
pub automated: bool,
pub relates_to: Option<Relation<EmoteEventContentWithoutRelation>>,
}
Expand description
The payload for an extensible emote message.
This is the new primary type introduced in MSC3954 and should only be sent in rooms with a
version that supports it. See the documentation of the message
module for more information.
To construct an EmoteEventContent
with a custom TextContentBlock
, convert it with
EmoteEventContent::from()
/ .into()
.
Fields§
§text: TextContentBlock
The message’s text content.
automated: bool
Whether this message is automated.
relates_to: Option<Relation<EmoteEventContentWithoutRelation>>
Information about related messages.
Implementations§
Trait Implementations§
source§impl Clone for EmoteEventContent
impl Clone for EmoteEventContent
source§fn clone(&self) -> EmoteEventContent
fn clone(&self) -> EmoteEventContent
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 EmoteEventContent
impl Debug for EmoteEventContent
source§impl<'de> Deserialize<'de> for EmoteEventContent
impl<'de> Deserialize<'de> for EmoteEventContent
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 EventContent for EmoteEventContent
impl EventContent for EmoteEventContent
source§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.source§impl From<EmoteEventContent> for AnyMessageLikeEventContent
impl From<EmoteEventContent> for AnyMessageLikeEventContent
source§fn from(c: EmoteEventContent) -> Self
fn from(c: EmoteEventContent) -> Self
Converts to this type from the input type.
source§impl From<EmoteEventContent> for EmoteEventContentWithoutRelation
impl From<EmoteEventContent> for EmoteEventContentWithoutRelation
source§fn from(c: EmoteEventContent) -> Self
fn from(c: EmoteEventContent) -> Self
Converts to this type from the input type.
source§impl From<TextContentBlock> for EmoteEventContent
impl From<TextContentBlock> for EmoteEventContent
source§fn from(text: TextContentBlock) -> Self
fn from(text: TextContentBlock) -> Self
Converts to this type from the input type.
source§impl RedactContent for EmoteEventContent
impl RedactContent for EmoteEventContent
source§type Redacted = RedactedEmoteEventContent
type Redacted = RedactedEmoteEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedEmoteEventContent
fn redact(self, version: &RoomVersionId) -> RedactedEmoteEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for EmoteEventContent
impl Serialize for EmoteEventContent
impl MessageLikeEventContent for EmoteEventContent
Auto Trait Implementations§
impl Freeze for EmoteEventContent
impl RefUnwindSafe for EmoteEventContent
impl Send for EmoteEventContent
impl Sync for EmoteEventContent
impl Unpin for EmoteEventContent
impl UnwindSafe for EmoteEventContent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)