pub struct Driver {
pub version: (i32, i32, i32),
pub name: OsString,
pub date: OsString,
pub desc: OsString,
}
Expand description
Driver version of a device.
Fields§
§version: (i32, i32, i32)
Version of the driver in (major, minor, patchlevel)
format
name: OsString
Name of the driver
date: OsString
Date driver was published
desc: OsString
Driver description
Implementations§
Trait Implementations§
impl Eq for Driver
impl StructuralPartialEq for Driver
Auto Trait Implementations§
impl Freeze for Driver
impl RefUnwindSafe for Driver
impl Send for Driver
impl Sync for Driver
impl Unpin for Driver
impl UnwindSafe for Driver
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