Struct uefi_raw::table::configuration::ConfigurationTable
source · #[repr(C)]pub struct ConfigurationTable {
pub vendor_guid: Guid,
pub vendor_table: *mut c_void,
}Expand description
UEFI configuration table.
Each table is uniquely identified by a GUID. The type of data pointed to by
vendor_table, as well as whether that address is physical or virtual,
depends on the GUID.
Fields§
§vendor_guid: Guid§vendor_table: *mut c_voidTrait Implementations§
source§impl Debug for ConfigurationTable
impl Debug for ConfigurationTable
source§impl PartialEq for ConfigurationTable
impl PartialEq for ConfigurationTable
source§fn eq(&self, other: &ConfigurationTable) -> bool
fn eq(&self, other: &ConfigurationTable) -> bool
This method tests for
self and other values to be equal, and is used
by ==.