pub enum MediaSource {
Plain(OwnedMxcUri),
Encrypted(Box<EncryptedFile>),
}Expand description
The source of a media file.
Variants§
Plain(OwnedMxcUri)
The MXC URI to the unencrypted media file.
Encrypted(Box<EncryptedFile>)
The encryption info of the encrypted media file.
Trait Implementations§
Source§impl Clone for MediaSource
impl Clone for MediaSource
Source§fn clone(&self) -> MediaSource
fn clone(&self) -> MediaSource
Returns a duplicate 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 MediaSource
impl Debug for MediaSource
Source§impl<'de> Deserialize<'de> for MediaSource
impl<'de> Deserialize<'de> for MediaSource
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<MediaSource> for StickerMediaSource
Available on crate feature compat-encrypted-stickers only.
impl From<MediaSource> for StickerMediaSource
Available on crate feature
compat-encrypted-stickers only.Source§fn from(value: MediaSource) -> Self
fn from(value: MediaSource) -> Self
Converts to this type from the input type.
Source§impl From<StickerMediaSource> for MediaSource
impl From<StickerMediaSource> for MediaSource
Source§fn from(value: StickerMediaSource) -> Self
fn from(value: StickerMediaSource) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MediaSource
impl RefUnwindSafe for MediaSource
impl Send for MediaSource
impl Sync for MediaSource
impl Unpin for MediaSource
impl UnwindSafe for MediaSource
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,
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more