#[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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.