pub struct TranscodingFile {
pub id: Option<String>,
pub kind: Option<String>,
pub size: Option<i64>,
pub meta: Option<Value>,
pub file_path: Option<String>,
pub file_url: Option<String>,
}Expand description
A transcoding job’s output file.
Fields§
§id: Option<String>The file id.
kind: Option<String>The file’s type.
size: Option<i64>The file’s size, in bytes.
meta: Option<Value>Provider-specific metadata.
file_path: Option<String>Where the file was stored.
file_url: Option<String>Where the file can be downloaded.
Trait Implementations§
Source§impl Clone for TranscodingFile
impl Clone for TranscodingFile
Source§fn clone(&self) -> TranscodingFile
fn clone(&self) -> TranscodingFile
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 TranscodingFile
impl Debug for TranscodingFile
Source§impl<'de> Deserialize<'de> for TranscodingFile
impl<'de> Deserialize<'de> for TranscodingFile
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 TranscodingFile
impl RefUnwindSafe for TranscodingFile
impl Send for TranscodingFile
impl Sync for TranscodingFile
impl Unpin for TranscodingFile
impl UnsafeUnpin for TranscodingFile
impl UnwindSafe for TranscodingFile
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