pub struct ProbeReport {
pub format: &'static str,
pub size_bytes: usize,
pub streams: Vec<ProbeStream>,
}Expand description
Result of probe: the detected container and its streams.
Fields§
§format: &'static strDetected container format (e.g. "MP4", "MPEG-TS").
size_bytes: usizeInput size in bytes.
streams: Vec<ProbeStream>The streams the demuxer found.
Trait Implementations§
Source§impl Clone for ProbeReport
impl Clone for ProbeReport
Source§fn clone(&self) -> ProbeReport
fn clone(&self) -> ProbeReport
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 moreAuto Trait Implementations§
impl Freeze for ProbeReport
impl RefUnwindSafe for ProbeReport
impl Send for ProbeReport
impl Sync for ProbeReport
impl Unpin for ProbeReport
impl UnsafeUnpin for ProbeReport
impl UnwindSafe for ProbeReport
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