[][src]Struct efi_ffi::EFI_SYSTEM_TABLE

#[repr(C)]pub struct EFI_SYSTEM_TABLE {
    pub Hdr: EFI_TABLE_HEADER,
    pub FirmwareVendor: *const u16,
    pub FirmwareRevision: u32,
    pub ConsoleInHandle: EFI_HANDLE,
    pub ConIn: *const EFI_SIMPLE_TEXT_INPUT_PROTOCOL,
    pub ConsoleOutHandle: EFI_HANDLE,
    pub ConOut: *const EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL,
    pub ConsoleErrorHandle: EFI_HANDLE,
    pub StdErr: *const EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL,
    pub RuntimeServices: *const EFI_RUNTIME_SERVICES,
    pub BootServices: *mut EFI_BOOT_SERVICES,
    pub NumberOfTableEntries: usize,
    pub ConfigurationTable: *const EFI_CONFIGURATION_TABLE,
}

Fields

Hdr: EFI_TABLE_HEADERFirmwareVendor: *const u16FirmwareRevision: u32ConsoleInHandle: EFI_HANDLEConIn: *const EFI_SIMPLE_TEXT_INPUT_PROTOCOLConsoleOutHandle: EFI_HANDLEConOut: *const EFI_SIMPLE_TEXT_OUTPUT_PROTOCOLConsoleErrorHandle: EFI_HANDLEStdErr: *const EFI_SIMPLE_TEXT_OUTPUT_PROTOCOLRuntimeServices: *const EFI_RUNTIME_SERVICESBootServices: *mut EFI_BOOT_SERVICESNumberOfTableEntries: usizeConfigurationTable: *const EFI_CONFIGURATION_TABLE

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.