pub struct Structure {
pub header: Header,
pub formatted: Vec<u8>,
pub strings: Vec<String>,
}
Expand description
Contains a single SMBIOS structure which can be interpreted using the SMBIOS specification.
Fields§
§header: Header
§formatted: Vec<u8>
§strings: Vec<String>
Trait Implementations§
impl StructuralPartialEq for Structure
Auto Trait Implementations§
impl Freeze for Structure
impl RefUnwindSafe for Structure
impl Send for Structure
impl Sync for Structure
impl Unpin for Structure
impl UnwindSafe for Structure
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