#[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_void
Trait Implementations§
source§impl Debug for ConfigurationTable
impl Debug for ConfigurationTable
source§impl PartialEq for ConfigurationTable
impl PartialEq for ConfigurationTable
impl Eq for ConfigurationTable
impl StructuralPartialEq for ConfigurationTable
Auto Trait Implementations§
impl Freeze for ConfigurationTable
impl RefUnwindSafe for ConfigurationTable
impl !Send for ConfigurationTable
impl !Sync for ConfigurationTable
impl Unpin for ConfigurationTable
impl UnwindSafe for ConfigurationTable
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