#[repr(C)]pub struct SMBIOSResponse {
pub revision: u64,
pub entry_32: Option<*const u8>,
pub entry_64: Option<*const u8>,
}
Expand description
Response to [SMBIOSRequest
]
Fields§
§revision: u64
The response revision number
entry_32: Option<*const u8>
Address of the 32-bit SMBIOS entry point, null if not present
entry_64: Option<*const u8>
Address of the 64-bit SMBIOS entry point, null if not present
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SMBIOSResponse
impl RefUnwindSafe for SMBIOSResponse
impl !Send for SMBIOSResponse
impl !Sync for SMBIOSResponse
impl Unpin for SMBIOSResponse
impl UnwindSafe for SMBIOSResponse
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