pub struct Transcoding {
pub url: Option<String>,
pub preset: Option<String>,
pub duration: Option<i64>,
pub snipped: Option<bool>,
pub format: Option<TranscodingFormat>,
pub quality: Option<String>,
pub is_legacy_transcoding: Option<bool>,
}Fields§
§url: Option<String>§preset: Option<String>§duration: Option<i64>§snipped: Option<bool>§format: Option<TranscodingFormat>§quality: Option<String>§is_legacy_transcoding: Option<bool>Trait Implementations§
Source§impl Clone for Transcoding
impl Clone for Transcoding
Source§fn clone(&self) -> Transcoding
fn clone(&self) -> Transcoding
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 Transcoding
impl Debug for Transcoding
Source§impl Default for Transcoding
impl Default for Transcoding
Source§fn default() -> Transcoding
fn default() -> Transcoding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Transcoding
impl<'de> Deserialize<'de> for Transcoding
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 Transcoding
impl RefUnwindSafe for Transcoding
impl Send for Transcoding
impl Sync for Transcoding
impl Unpin for Transcoding
impl UnwindSafe for Transcoding
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