Struct ruma_common::events::file::FileEventContent
source · pub struct FileEventContent {
pub message: MessageContent,
pub file: FileContent,
pub relates_to: Option<Relation<FileEventContentWithoutRelation>>,
}Available on crate features
events and unstable-msc3551 only.Expand description
Fields§
§message: MessageContentThe text representation of the message.
file: FileContentThe file content of the message.
relates_to: Option<Relation<FileEventContentWithoutRelation>>Information about related messages.
Implementations§
source§impl FileEventContent
impl FileEventContent
sourcepub fn plain(
message: impl Into<String>,
url: OwnedMxcUri,
info: Option<Box<FileContentInfo>>
) -> Self
pub fn plain(
message: impl Into<String>,
url: OwnedMxcUri,
info: Option<Box<FileContentInfo>>
) -> Self
Creates a new non-encrypted FileEventContent with the given plain text message, url and
file info.
sourcepub fn plain_message(
message: MessageContent,
url: OwnedMxcUri,
info: Option<Box<FileContentInfo>>
) -> Self
pub fn plain_message(
message: MessageContent,
url: OwnedMxcUri,
info: Option<Box<FileContentInfo>>
) -> Self
Creates a new non-encrypted FileEventContent with the given message, url and
file info.
sourcepub fn encrypted(
message: impl Into<String>,
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
pub fn encrypted(
message: impl Into<String>,
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
Creates a new encrypted FileEventContent with the given plain text message, url,
encryption info and file info.
sourcepub fn encrypted_message(
message: MessageContent,
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
pub fn encrypted_message(
message: MessageContent,
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
Creates a new encrypted FileEventContent with the given message, url,
encryption info and file info.
Trait Implementations§
source§impl Clone for FileEventContent
impl Clone for FileEventContent
source§fn clone(&self) -> FileEventContent
fn clone(&self) -> FileEventContent
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 FileEventContent
impl Debug for FileEventContent
source§impl<'de> Deserialize<'de> for FileEventContent
impl<'de> Deserialize<'de> for FileEventContent
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 FileEventContent
impl EventContent for FileEventContent
§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<FileEventContent> for AnyMessageLikeEventContent
impl From<FileEventContent> for AnyMessageLikeEventContent
source§fn from(c: FileEventContent) -> Self
fn from(c: FileEventContent) -> Self
Converts to this type from the input type.
source§impl From<FileEventContent> for FileEventContentWithoutRelation
impl From<FileEventContent> for FileEventContentWithoutRelation
source§fn from(c: FileEventContent) -> Self
fn from(c: FileEventContent) -> Self
Converts to this type from the input type.
source§impl RedactContent for FileEventContent
impl RedactContent for FileEventContent
§type Redacted = RedactedFileEventContent
type Redacted = RedactedFileEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedFileEventContent
fn redact(self, version: &RoomVersionId) -> RedactedFileEventContent
Transform
self into a redacted form (removing most or all fields) according to the spec. Read more