#[repr(C)]pub struct HandoffInfoTable {
pub header: Header,
pub version: u32,
pub boot_mode: BootMode,
pub efi_memory_top: PhysicalAddress,
pub efi_memory_bottom: PhysicalAddress,
pub efi_free_memory_top: PhysicalAddress,
pub efi_free_memory_bottom: PhysicalAddress,
pub efi_end_of_hob_list: PhysicalAddress,
}Expand description
HOB Hand Off Information Table, defined in [UEFI-PI Spec], section 5.3
Contains general state information used by the HOB producer phase. This HOB must be the first one in the HOB list.
Fields§
§header: Header§version: u32§boot_mode: BootMode§efi_memory_top: PhysicalAddress§efi_memory_bottom: PhysicalAddress§efi_free_memory_top: PhysicalAddress§efi_free_memory_bottom: PhysicalAddress§efi_end_of_hob_list: PhysicalAddressImplementations§
Trait Implementations§
Source§impl Clone for HandoffInfoTable
impl Clone for HandoffInfoTable
Source§fn clone(&self) -> HandoffInfoTable
fn clone(&self) -> HandoffInfoTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HandoffInfoTable
impl Debug for HandoffInfoTable
Source§impl<'a> TryFromCtx<'a, Endian> for HandoffInfoTablewhere
HandoffInfoTable: 'a,
impl<'a> TryFromCtx<'a, Endian> for HandoffInfoTablewhere
HandoffInfoTable: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a HandoffInfoTable
impl<'a> TryIntoCtx<Endian> for &'a HandoffInfoTable
Source§impl TryIntoCtx<Endian> for HandoffInfoTable
impl TryIntoCtx<Endian> for HandoffInfoTable
impl Copy for HandoffInfoTable
Auto Trait Implementations§
impl Freeze for HandoffInfoTable
impl RefUnwindSafe for HandoffInfoTable
impl Send for HandoffInfoTable
impl Sync for HandoffInfoTable
impl Unpin for HandoffInfoTable
impl UnwindSafe for HandoffInfoTable
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