pub struct Version {
pub major: u32,
pub minor: u32,
pub patch: u32,
pub version_string: String,
pub configuration: Vec<String>,
}
Expand description
Version information for the FFmpeg suite
Fields§
§major: u32
Major version number
minor: u32
Minor version number
patch: u32
Patch version number
version_string: String
Version string
configuration: Vec<String>
Configuration flags
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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