pub struct SmbiosTables<'a> {
pub bios: SmbiosBiosInfo<'a>,
pub system: SmbiosSystemInfo<'a>,
}Expand description
Aggregate of the SMBIOS structures to build. The caller supplies all of the identity strings and the system UUID.
Fields§
§bios: SmbiosBiosInfo<'a>Type 0 BIOS Information.
system: SmbiosSystemInfo<'a>Type 1 System Information.
Trait Implementations§
Source§impl<'a> Clone for SmbiosTables<'a>
impl<'a> Clone for SmbiosTables<'a>
Source§fn clone(&self) -> SmbiosTables<'a>
fn clone(&self) -> SmbiosTables<'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 SmbiosTables<'a>
impl<'a> Debug for SmbiosTables<'a>
impl<'a> Copy for SmbiosTables<'a>
Auto Trait Implementations§
impl<'a> Freeze for SmbiosTables<'a>
impl<'a> RefUnwindSafe for SmbiosTables<'a>
impl<'a> Send for SmbiosTables<'a>
impl<'a> Sync for SmbiosTables<'a>
impl<'a> Unpin for SmbiosTables<'a>
impl<'a> UnsafeUnpin for SmbiosTables<'a>
impl<'a> UnwindSafe for SmbiosTables<'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