pub enum ProbeEngine {
Ffprobe,
}Expand description
Backend used to probe media files.
Variants§
Ffprobe
Probe via the ffprobe binary.
Trait Implementations§
Source§impl Clone for ProbeEngine
impl Clone for ProbeEngine
Source§fn clone(&self) -> ProbeEngine
fn clone(&self) -> ProbeEngine
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 moreimpl Copy for ProbeEngine
Source§impl Debug for ProbeEngine
impl Debug for ProbeEngine
impl Eq for ProbeEngine
Source§impl PartialEq for ProbeEngine
impl PartialEq for ProbeEngine
Source§fn eq(&self, other: &ProbeEngine) -> bool
fn eq(&self, other: &ProbeEngine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProbeEngine
Auto Trait Implementations§
impl Freeze for ProbeEngine
impl RefUnwindSafe for ProbeEngine
impl Send for ProbeEngine
impl Sync for ProbeEngine
impl Unpin for ProbeEngine
impl UnsafeUnpin for ProbeEngine
impl UnwindSafe for ProbeEngine
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