pub enum OutputFormat {
Default,
Compact,
Csv,
Flat,
Ini,
Json,
Xml,
}Expand description
Output format for FFprobe
Variants§
Default
Default format
Compact
Compact format
Csv
CSV format
Flat
Flat format
Ini
INI format
Json
JSON format
Xml
XML format
Implementations§
Source§impl OutputFormat
impl OutputFormat
Sourcepub fn supports_nested(&self) -> bool
pub fn supports_nested(&self) -> bool
Check if format supports nested data
Sourcepub fn is_human_readable(&self) -> bool
pub fn is_human_readable(&self) -> bool
Check if format is human-readable
Sourcepub fn is_machine_parseable(&self) -> bool
pub fn is_machine_parseable(&self) -> bool
Check if format is machine-parseable
Trait Implementations§
Source§impl Clone for OutputFormat
impl Clone for OutputFormat
Source§fn clone(&self) -> OutputFormat
fn clone(&self) -> OutputFormat
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 OutputFormat
impl Debug for OutputFormat
Source§impl Default for OutputFormat
impl Default for OutputFormat
Source§impl Display for OutputFormat
impl Display for OutputFormat
Source§impl PartialEq for OutputFormat
impl PartialEq for OutputFormat
impl Copy for OutputFormat
impl Eq for OutputFormat
impl StructuralPartialEq for OutputFormat
Auto Trait Implementations§
impl Freeze for OutputFormat
impl RefUnwindSafe for OutputFormat
impl Send for OutputFormat
impl Sync for OutputFormat
impl Unpin for OutputFormat
impl UnwindSafe for OutputFormat
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