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