pub struct BuiltSmbios {
pub entry_point: Vec<u8>,
pub structure_table: Vec<u8>,
}Expand description
The built SMBIOS blobs, ready to be placed in guest memory.
Fields§
§entry_point: Vec<u8>The 24-byte _SM3_ entry point.
structure_table: Vec<u8>The structure table (Type 0, Type 1, Type 127, plus string sets).
Trait Implementations§
Source§impl Clone for BuiltSmbios
impl Clone for BuiltSmbios
Source§fn clone(&self) -> BuiltSmbios
fn clone(&self) -> BuiltSmbios
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 moreAuto Trait Implementations§
impl Freeze for BuiltSmbios
impl RefUnwindSafe for BuiltSmbios
impl Send for BuiltSmbios
impl Sync for BuiltSmbios
impl Unpin for BuiltSmbios
impl UnsafeUnpin for BuiltSmbios
impl UnwindSafe for BuiltSmbios
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