pub struct BiosInfo {
pub vendor: Option<String>,
pub version: Option<String>,
pub release_date: Option<String>,
pub system_manufacturer: Option<String>,
pub system_product_name: Option<String>,
}Expand description
BIOS summary information.
Fields§
§vendor: Option<String>BIOS vendor.
version: Option<String>BIOS version string.
release_date: Option<String>BIOS release date string.
system_manufacturer: Option<String>System manufacturer from firmware descriptors.
system_product_name: Option<String>System product name from firmware descriptors.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BiosInfo
impl RefUnwindSafe for BiosInfo
impl Send for BiosInfo
impl Sync for BiosInfo
impl Unpin for BiosInfo
impl UnsafeUnpin for BiosInfo
impl UnwindSafe for BiosInfo
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