pub struct BiosInfo<'a> {
pub vendor: &'a str,
pub version: &'a str,
pub release_date: &'a str,
pub major: u8,
pub minor: u8,
}Available on x86-64 or AArch64 only.
Fields§
§vendor: &'a str§version: &'a str§release_date: &'a str§major: u8§minor: u8Trait Implementations§
impl<'a> Eq for BiosInfo<'a>
impl<'a> StructuralPartialEq for BiosInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for BiosInfo<'a>
impl<'a> RefUnwindSafe for BiosInfo<'a>
impl<'a> Send for BiosInfo<'a>
impl<'a> Sync for BiosInfo<'a>
impl<'a> Unpin for BiosInfo<'a>
impl<'a> UnwindSafe for BiosInfo<'a>
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