pub struct LoadInfo {
pub firmware_base: u64,
pub firmware_size: u64,
pub total_size: u64,
}
Fields§
§firmware_base: u64
The GPA the firmware was loaded at.
firmware_size: u64
The size of the firmware image loaded, in bytes.
total_size: u64
The total size used by the loader starting at the firmware_base, including the firmware image and misc data, in bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadInfo
impl RefUnwindSafe for LoadInfo
impl Send for LoadInfo
impl Sync for LoadInfo
impl Unpin for LoadInfo
impl UnwindSafe for LoadInfo
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