[][src]Struct efi_ffi::loaded_image::EFI_LOADED_IMAGE_PROTOCOL

#[repr(C)]pub struct EFI_LOADED_IMAGE_PROTOCOL {
    pub Revision: UINT32,
    pub ParentHandle: EFI_HANDLE,
    pub SystemTable: *const EFI_SYSTEM_TABLE,
    pub DeviceHandle: EFI_HANDLE,
    pub FilePath: *const EFI_DEVICE_PATH_PROTOCOL,
    pub Reserved: *const VOID,
    pub LoadOptionsSize: UINT32,
    pub LoadOptions: *const VOID,
    pub ImageBase: *const VOID,
    pub ImageSize: UINT64,
    pub ImageCodeType: EFI_MEMORY_TYPE,
    pub ImageDataType: EFI_MEMORY_TYPE,
    pub Unload: EFI_IMAGE_UNLOAD,
}

Fields

Revision: UINT32ParentHandle: EFI_HANDLESystemTable: *const EFI_SYSTEM_TABLEDeviceHandle: EFI_HANDLEFilePath: *const EFI_DEVICE_PATH_PROTOCOLReserved: *const VOIDLoadOptionsSize: UINT32LoadOptions: *const VOIDImageBase: *const VOIDImageSize: UINT64ImageCodeType: EFI_MEMORY_TYPEImageDataType: EFI_MEMORY_TYPEUnload: EFI_IMAGE_UNLOAD

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.