Struct tartan_uefi::proto::LoadedImage
source · #[repr(C)]pub struct LoadedImage<'a> {
pub revision: u32,
pub parent_handle: Handle,
pub system_table: *const SystemTable<'a>,
pub device_handle: Handle,
pub load_options_size: u32,
pub load_options: *const c_void,
pub image_base: *mut c_void,
pub image_size: u64,
pub image_code_type: MemoryType,
pub image_data_type: MemoryType,
pub unload: unsafe extern "C" fn(handle: Handle) -> Status,
/* private fields */
}
Fields§
§revision: u32
§parent_handle: Handle
§system_table: *const SystemTable<'a>
§device_handle: Handle
§load_options_size: u32
§load_options: *const c_void
§image_base: *mut c_void
§image_size: u64
§image_code_type: MemoryType
§image_data_type: MemoryType
§unload: unsafe extern "C" fn(handle: Handle) -> Status
Implementations§
source§impl LoadedImage<'_>
impl LoadedImage<'_>
pub const MIN_REVISION: u32 = 4_096u32
Trait Implementations§
source§impl<'a> Debug for LoadedImage<'a>
impl<'a> Debug for LoadedImage<'a>
source§impl Protocol for LoadedImage<'_>
impl Protocol for LoadedImage<'_>
const PROTOCOL_ID: GUID = _
Auto Trait Implementations§
impl<'a> Freeze for LoadedImage<'a>
impl<'a> RefUnwindSafe for LoadedImage<'a>
impl<'a> !Send for LoadedImage<'a>
impl<'a> !Sync for LoadedImage<'a>
impl<'a> Unpin for LoadedImage<'a>
impl<'a> UnwindSafe for LoadedImage<'a>
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