pub struct SmbiosBiosInfo<'a> {
pub vendor: &'a str,
pub version: &'a str,
pub release_date: &'a str,
pub major: u8,
pub minor: u8,
}Expand description
BIOS Information (SMBIOS Type 0).
Fields§
§vendor: &'a strBIOS vendor string.
version: &'a strBIOS version string.
release_date: &'a strBIOS release date string.
major: u8System BIOS Major Release.
minor: u8System BIOS Minor Release.
Trait Implementations§
Source§impl<'a> Clone for SmbiosBiosInfo<'a>
impl<'a> Clone for SmbiosBiosInfo<'a>
Source§fn clone(&self) -> SmbiosBiosInfo<'a>
fn clone(&self) -> SmbiosBiosInfo<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SmbiosBiosInfo<'a>
impl<'a> Debug for SmbiosBiosInfo<'a>
impl<'a> Copy for SmbiosBiosInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for SmbiosBiosInfo<'a>
impl<'a> RefUnwindSafe for SmbiosBiosInfo<'a>
impl<'a> Send for SmbiosBiosInfo<'a>
impl<'a> Sync for SmbiosBiosInfo<'a>
impl<'a> Unpin for SmbiosBiosInfo<'a>
impl<'a> UnsafeUnpin for SmbiosBiosInfo<'a>
impl<'a> UnwindSafe for SmbiosBiosInfo<'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