Struct ruma::events::emote::EmoteEventContent
source · pub struct EmoteEventContent {
pub text: TextContentBlock,
pub automated: bool,
pub relates_to: Option<Relation<EmoteEventContentWithoutRelation>>,
}
Available on crate features
events
and unstable-msc3954
only.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
Available on crate feature
unstable-msc3955
only.Whether this message is automated.
relates_to: Option<Relation<EmoteEventContentWithoutRelation>>
Information about related messages.
Implementations§
source§impl EmoteEventContent
impl EmoteEventContent
sourcepub fn plain(body: impl Into<String>) -> EmoteEventContent
pub fn plain(body: impl Into<String>) -> EmoteEventContent
A convenience constructor to create a plain text emote.
sourcepub fn html(
body: impl Into<String>,
html_body: impl Into<String>,
) -> EmoteEventContent
pub fn html( body: impl Into<String>, html_body: impl Into<String>, ) -> EmoteEventContent
A convenience constructor to create an HTML emote.
sourcepub fn markdown(body: impl AsRef<str> + Into<String>) -> EmoteEventContent
Available on crate feature markdown
only.
pub fn markdown(body: impl AsRef<str> + Into<String>) -> EmoteEventContent
markdown
only.A convenience constructor to create an emote from Markdown.
The content includes an HTML message if some Markdown formatting was detected, otherwise only a plain text message is included.
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<EmoteEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EmoteEventContent, <__D as Deserializer<'de>>::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) -> <EmoteEventContent as EventContent>::EventType
fn event_type(&self) -> <EmoteEventContent as EventContent>::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) -> AnyMessageLikeEventContent
fn from(c: EmoteEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
source§impl From<EmoteEventContent> for EmoteEventContentWithoutRelation
impl From<EmoteEventContent> for EmoteEventContentWithoutRelation
source§fn from(c: EmoteEventContent) -> EmoteEventContentWithoutRelation
fn from(c: EmoteEventContent) -> EmoteEventContentWithoutRelation
Converts to this type from the input type.
source§impl From<TextContentBlock> for EmoteEventContent
impl From<TextContentBlock> for EmoteEventContent
source§fn from(text: TextContentBlock) -> EmoteEventContent
fn from(text: TextContentBlock) -> EmoteEventContent
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
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
)source§impl<T> EventContentFromType for Twhere
T: EventContent + DeserializeOwned,
impl<T> EventContentFromType for Twhere
T: EventContent + DeserializeOwned,
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more