pub struct FfmpegVersion {
pub binary: String,
pub major: u32,
pub minor: u32,
pub raw: String,
}Expand description
Parsed FFmpeg version.
Fields§
§binary: StringPath to the binary that reported this version.
major: u32Major version number.
minor: u32Minor version number.
raw: StringRaw version string as parsed from the binary’s output.
Trait Implementations§
Source§impl Clone for FfmpegVersion
impl Clone for FfmpegVersion
Source§fn clone(&self) -> FfmpegVersion
fn clone(&self) -> FfmpegVersion
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 FfmpegVersion
impl RefUnwindSafe for FfmpegVersion
impl Send for FfmpegVersion
impl Sync for FfmpegVersion
impl Unpin for FfmpegVersion
impl UnsafeUnpin for FfmpegVersion
impl UnwindSafe for FfmpegVersion
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