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>>,
}
Available on crate features
events
and unstable-msc3551
only.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
Available on crate feature
unstable-msc3955
only.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,
) -> FileEventContent
pub fn plain( text: TextContentBlock, url: OwnedMxcUri, name: String, ) -> FileEventContent
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,
) -> FileEventContent
pub fn plain_with_plain_text( plain_text: impl Into<String>, url: OwnedMxcUri, name: String, ) -> FileEventContent
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,
) -> FileEventContent
pub fn encrypted( text: TextContentBlock, url: OwnedMxcUri, name: String, encryption_info: EncryptedContent, ) -> FileEventContent
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,
) -> FileEventContent
pub fn encrypted_with_plain_text( plain_text: impl Into<String>, url: OwnedMxcUri, name: String, encryption_info: EncryptedContent, ) -> FileEventContent
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<FileEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FileEventContent, <__D as Deserializer<'de>>::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) -> <FileEventContent as EventContent>::EventType
fn event_type(&self) -> <FileEventContent as EventContent>::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) -> AnyMessageLikeEventContent
fn from(c: FileEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
source§impl From<FileEventContent> for FileEventContentWithoutRelation
impl From<FileEventContent> for FileEventContentWithoutRelation
source§fn from(c: FileEventContent) -> FileEventContentWithoutRelation
fn from(c: FileEventContent) -> FileEventContentWithoutRelation
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
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 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
)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