Struct ruma_common::events::file::FileContent
source · pub struct FileContent {
pub url: OwnedMxcUri,
pub info: Option<Box<FileContentInfo>>,
pub encryption_info: Option<Box<EncryptedContent>>,
}Available on crate features
events and unstable-msc3551 only.Expand description
File content.
Fields§
§url: OwnedMxcUriThe URL to the file.
info: Option<Box<FileContentInfo>>Information about the uploaded file.
encryption_info: Option<Box<EncryptedContent>>Information on the encrypted file.
Required if the file is encrypted.
Implementations§
source§impl FileContent
impl FileContent
sourcepub fn plain(url: OwnedMxcUri, info: Option<Box<FileContentInfo>>) -> Self
pub fn plain(url: OwnedMxcUri, info: Option<Box<FileContentInfo>>) -> Self
Creates a new non-encrypted FileContent with the given url and file info.
sourcepub fn encrypted(
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
pub fn encrypted(
url: OwnedMxcUri,
encryption_info: EncryptedContent,
info: Option<Box<FileContentInfo>>
) -> Self
Creates a new encrypted FileContent with the given url, encryption info and file info.
sourcepub fn is_encrypted(&self) -> bool
pub fn is_encrypted(&self) -> bool
Whether the file is encrypted.
Trait Implementations§
source§impl Clone for FileContent
impl Clone for FileContent
source§fn clone(&self) -> FileContent
fn clone(&self) -> FileContent
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 FileContent
impl Debug for FileContent
source§impl<'de> Deserialize<'de> for FileContent
impl<'de> Deserialize<'de> for FileContent
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 From<&FileContent> for MediaSource
impl From<&FileContent> for MediaSource
source§fn from(content: &FileContent) -> Self
fn from(content: &FileContent) -> Self
Converts to this type from the input type.