#[non_exhaustive]pub enum StickerMediaSource {
    Plain(OwnedMxcUri),
    Encrypted(Box<EncryptedFile>),
}Available on crate feature 
events only.Expand description
The source of a sticker media file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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 StickerMediaSource
 
impl Clone for StickerMediaSource
Source§fn clone(&self) -> StickerMediaSource
 
fn clone(&self) -> StickerMediaSource
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 StickerMediaSource
 
impl Debug for StickerMediaSource
Source§impl<'de> Deserialize<'de> for StickerMediaSource
 
impl<'de> Deserialize<'de> for StickerMediaSource
Source§fn deserialize<D>(
    deserializer: D,
) -> Result<StickerMediaSource, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(
    deserializer: D,
) -> Result<StickerMediaSource, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<MediaSource> for StickerMediaSource
 
impl From<MediaSource> for StickerMediaSource
Source§fn from(value: MediaSource) -> StickerMediaSource
 
fn from(value: MediaSource) -> StickerMediaSource
Converts to this type from the input type.
Source§impl From<StickerMediaSource> for MediaSource
 
impl From<StickerMediaSource> for MediaSource
Source§fn from(value: StickerMediaSource) -> MediaSource
 
fn from(value: StickerMediaSource) -> MediaSource
Converts to this type from the input type.
Source§impl Serialize for StickerMediaSource
 
impl Serialize for StickerMediaSource
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
Auto Trait Implementations§
impl Freeze for StickerMediaSource
impl RefUnwindSafe for StickerMediaSource
impl Send for StickerMediaSource
impl Sync for StickerMediaSource
impl Unpin for StickerMediaSource
impl UnwindSafe for StickerMediaSource
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