#[repr(C)]pub struct LoadedImage {Show 13 fields
pub Revision: u32,
pub ParentHandle: Handle,
pub SystemTable: &'static mut SystemTable,
pub DeviceHandle: Handle,
pub FilePath: usize,
pub Reserved: usize,
pub LoadOptionsSize: u32,
pub LoadOptions: *const u16,
pub ImageBase: usize,
pub ImageSize: u64,
pub ImageCodeType: MemoryType,
pub ImageDataType: MemoryType,
pub Unload: extern "efiapi" fn(ImageHandle: Handle) -> Status,
}Fields§
§Revision: u32§ParentHandle: Handle§SystemTable: &'static mut SystemTable§DeviceHandle: Handle§FilePath: usize§Reserved: usize§LoadOptionsSize: u32§LoadOptions: *const u16§ImageBase: usize§ImageSize: u64§ImageCodeType: MemoryType§ImageDataType: MemoryType§Unload: extern "efiapi" fn(ImageHandle: Handle) -> StatusImplementations§
Auto Trait Implementations§
impl Freeze for LoadedImage
impl RefUnwindSafe for LoadedImage
impl !Send for LoadedImage
impl !Sync for LoadedImage
impl Unpin for LoadedImage
impl !UnwindSafe for LoadedImage
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