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>>,
}
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
Whether this message is automated.
relates_to: Option<Relation<MessageEventContentWithoutRelation>>
Information about related messages.
url_previews: Option<Vec<UrlPreview>>
MSC4095-style bundled url previews
Implementations§
Trait Implementations§
source§impl Clone for MessageEventContent
impl Clone for MessageEventContent
source§fn clone(&self) -> MessageEventContent
fn clone(&self) -> MessageEventContent
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 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<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 MessageEventContent
impl EventContent for MessageEventContent
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<MessageEventContent> for AnyMessageLikeEventContent
impl From<MessageEventContent> for AnyMessageLikeEventContent
source§fn from(c: MessageEventContent) -> Self
fn from(c: MessageEventContent) -> Self
Converts to this type from the input type.
source§impl From<MessageEventContent> for MessageEventContentWithoutRelation
impl From<MessageEventContent> for MessageEventContentWithoutRelation
source§fn from(c: MessageEventContent) -> Self
fn from(c: MessageEventContent) -> Self
Converts to this type from the input type.
source§impl From<TextContentBlock> for MessageEventContent
impl From<TextContentBlock> for MessageEventContent
source§fn from(text: TextContentBlock) -> Self
fn from(text: TextContentBlock) -> Self
Converts to this type from the input type.
source§impl RedactContent for MessageEventContent
impl RedactContent for MessageEventContent
source§type Redacted = RedactedMessageEventContent
type Redacted = RedactedMessageEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedMessageEventContent
fn redact(self, version: &RoomVersionId) -> RedactedMessageEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for MessageEventContent
impl Serialize for MessageEventContent
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
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
)