pub struct MediaFile {Show 13 fields
pub id: Option<String>,
pub delivery: String,
pub type: String,
pub bitrate: Option<u64>,
pub width: u64,
pub height: u64,
pub min_bitrate: Option<u64>,
pub max_bitrate: Option<u64>,
pub scalable: Option<String>,
pub maintain_aspect_ratio: Option<String>,
pub codec: Option<String>,
pub api_framework: Option<String>,
pub content: Option<String>,
}
Fields§
§id: Option<String>
§delivery: String
§type: String
§bitrate: Option<u64>
§width: u64
§height: u64
§min_bitrate: Option<u64>
§max_bitrate: Option<u64>
§scalable: Option<String>
§maintain_aspect_ratio: Option<String>
§codec: Option<String>
§api_framework: Option<String>
§content: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MediaFile
impl<'de> Deserialize<'de> for MediaFile
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
Auto Trait Implementations§
impl Freeze for MediaFile
impl RefUnwindSafe for MediaFile
impl Send for MediaFile
impl Sync for MediaFile
impl Unpin for MediaFile
impl UnwindSafe for MediaFile
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