Struct ruma_events::file::FileEventContent
source · pub struct FileEventContent {
pub text: TextContentBlock,
pub file: FileContentBlock,
pub caption: Option<CaptionContentBlock>,
pub automated: bool,
pub relates_to: Option<Relation<FileEventContentWithoutRelation>>,
}
Expand description
Fields§
§text: TextContentBlock
The text representation of the message.
file: FileContentBlock
The file content of the message.
The caption of the message, if any.
automated: bool
Whether this message is automated.
relates_to: Option<Relation<FileEventContentWithoutRelation>>
Information about related messages.
Implementations§
source§impl FileEventContent
impl FileEventContent
sourcepub fn plain(text: TextContentBlock, url: OwnedMxcUri, name: String) -> Self
pub fn plain(text: TextContentBlock, url: OwnedMxcUri, name: String) -> Self
Creates a new non-encrypted FileEventContent
with the given fallback representation, url
and file info.
sourcepub fn plain_with_plain_text(
plain_text: impl Into<String>,
url: OwnedMxcUri,
name: String,
) -> Self
pub fn plain_with_plain_text( plain_text: impl Into<String>, url: OwnedMxcUri, name: String, ) -> Self
Creates a new non-encrypted FileEventContent
with the given plain text fallback
representation, url and name.
sourcepub fn encrypted(
text: TextContentBlock,
url: OwnedMxcUri,
name: String,
encryption_info: EncryptedContent,
) -> Self
pub fn encrypted( text: TextContentBlock, url: OwnedMxcUri, name: String, encryption_info: EncryptedContent, ) -> Self
Creates a new encrypted FileEventContent
with the given fallback representation, url,
name and encryption info.
sourcepub fn encrypted_with_plain_text(
plain_text: impl Into<String>,
url: OwnedMxcUri,
name: String,
encryption_info: EncryptedContent,
) -> Self
pub fn encrypted_with_plain_text( plain_text: impl Into<String>, url: OwnedMxcUri, name: String, encryption_info: EncryptedContent, ) -> Self
Creates a new encrypted FileEventContent
with the given plain text fallback
representation, url, name and encryption 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
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<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
source§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 moresource§impl Serialize for FileEventContent
impl Serialize for FileEventContent
impl MessageLikeEventContent for FileEventContent
Auto Trait Implementations§
impl Freeze for FileEventContent
impl RefUnwindSafe for FileEventContent
impl Send for FileEventContent
impl Sync for FileEventContent
impl Unpin for FileEventContent
impl UnwindSafe for FileEventContent
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
)