pub enum MediaOutputAsset {
Url {
url: String,
mime_type: Option<String>,
},
Base64 {
data: String,
mime_type: Option<String>,
},
ProviderFileId {
file_id: String,
mime_type: Option<String>,
},
}Expand description
A media asset returned by a provider-native operation.
Variants§
Trait Implementations§
Source§impl Clone for MediaOutputAsset
impl Clone for MediaOutputAsset
Source§fn clone(&self) -> MediaOutputAsset
fn clone(&self) -> MediaOutputAsset
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MediaOutputAsset
impl Debug for MediaOutputAsset
Source§impl<'de> Deserialize<'de> for MediaOutputAsset
impl<'de> Deserialize<'de> for MediaOutputAsset
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
impl Eq for MediaOutputAsset
Source§impl PartialEq for MediaOutputAsset
impl PartialEq for MediaOutputAsset
Source§fn eq(&self, other: &MediaOutputAsset) -> bool
fn eq(&self, other: &MediaOutputAsset) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MediaOutputAsset
impl Serialize for MediaOutputAsset
impl StructuralPartialEq for MediaOutputAsset
Auto Trait Implementations§
impl Freeze for MediaOutputAsset
impl RefUnwindSafe for MediaOutputAsset
impl Send for MediaOutputAsset
impl Sync for MediaOutputAsset
impl Unpin for MediaOutputAsset
impl UnsafeUnpin for MediaOutputAsset
impl UnwindSafe for MediaOutputAsset
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.