pub struct Format {
pub filename: String,
pub nb_streams: i64,
pub nb_programs: i64,
pub format_name: String,
pub format_long_name: String,
pub start_time: Option<String>,
pub duration: Option<String>,
pub size: String,
pub bit_rate: Option<String>,
pub probe_score: i64,
pub tags: Option<FormatTags>,
}Fields
filename: Stringnb_streams: i64nb_programs: i64format_name: Stringformat_long_name: Stringstart_time: Option<String>duration: Option<String>size: Stringbit_rate: Option<String>probe_score: i64Trait Implementations
sourceimpl<'de> Deserialize<'de> for Format
impl<'de> Deserialize<'de> for Format
sourcefn 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 StructuralPartialEq for Format
Auto Trait Implementations
impl RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl UnwindSafe for Format
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more