Struct ruma::events::message::MessageEventContent
source · pub struct MessageEventContent {
pub text: TextContentBlock,
pub automated: bool,
pub relates_to: Option<Relation<MessageEventContentWithoutRelation>>,
pub url_previews: Option<Vec<UrlPreview>>,
}
events
and unstable-msc1767
only.Expand description
The payload for an extensible text message.
This is the new primary type introduced in MSC1767 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 a MessageEventContent
with a custom TextContentBlock
, convert it with
MessageEventContent::from()
/ .into()
.
Fields§
§text: TextContentBlock
The message’s text content.
automated: bool
unstable-msc3955
only.Whether this message is automated.
relates_to: Option<Relation<MessageEventContentWithoutRelation>>
Information about related messages.
url_previews: Option<Vec<UrlPreview>>
unstable-msc4095
only.MSC4095-style bundled url previews
Implementations§
source§impl MessageEventContent
impl MessageEventContent
sourcepub fn plain(body: impl Into<String>) -> MessageEventContent
pub fn plain(body: impl Into<String>) -> MessageEventContent
A convenience constructor to create a plain text message.
sourcepub fn html(
body: impl Into<String>,
html_body: impl Into<String>,
) -> MessageEventContent
pub fn html( body: impl Into<String>, html_body: impl Into<String>, ) -> MessageEventContent
A convenience constructor to create an HTML message.
sourcepub fn markdown(body: impl AsRef<str> + Into<String>) -> MessageEventContent
Available on crate feature markdown
only.
pub fn markdown(body: impl AsRef<str> + Into<String>) -> MessageEventContent
markdown
only.A convenience constructor to create a message 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 MessageEventContent
impl Clone for MessageEventContent
source§fn clone(&self) -> MessageEventContent
fn clone(&self) -> MessageEventContent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MessageEventContent
impl Debug for MessageEventContent
source§impl<'de> Deserialize<'de> for MessageEventContent
impl<'de> Deserialize<'de> for MessageEventContent
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
source§impl EventContent for MessageEventContent
impl EventContent for MessageEventContent
source§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
source§fn event_type(&self) -> <MessageEventContent as EventContent>::EventType
fn event_type(&self) -> <MessageEventContent as EventContent>::EventType
m.room.message
.source§impl From<MessageEventContent> for AnyMessageLikeEventContent
impl From<MessageEventContent> for AnyMessageLikeEventContent
source§fn from(c: MessageEventContent) -> AnyMessageLikeEventContent
fn from(c: MessageEventContent) -> AnyMessageLikeEventContent
source§impl From<MessageEventContent> for MessageEventContentWithoutRelation
impl From<MessageEventContent> for MessageEventContentWithoutRelation
source§fn from(c: MessageEventContent) -> MessageEventContentWithoutRelation
fn from(c: MessageEventContent) -> MessageEventContentWithoutRelation
source§impl From<TextContentBlock> for MessageEventContent
impl From<TextContentBlock> for MessageEventContent
source§fn from(text: TextContentBlock) -> MessageEventContent
fn from(text: TextContentBlock) -> MessageEventContent
source§impl RedactContent for MessageEventContent
impl RedactContent for MessageEventContent
source§type Redacted = RedactedMessageEventContent
type Redacted = RedactedMessageEventContent
source§fn redact(self, version: &RoomVersionId) -> RedactedMessageEventContent
fn redact(self, version: &RoomVersionId) -> RedactedMessageEventContent
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for MessageEventContent
impl Serialize for MessageEventContent
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,
impl MessageLikeEventContent for MessageEventContent
Auto Trait Implementations§
impl Freeze for MessageEventContent
impl RefUnwindSafe for MessageEventContent
impl Send for MessageEventContent
impl Sync for MessageEventContent
impl Unpin for MessageEventContent
impl UnwindSafe for MessageEventContent
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
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)
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>
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>
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