[][src]Struct uefi_ffi::EFI_SYSTEM_TABLE

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

Fields

Hdr: EFI_TABLE_HEADERFirmwareVendor: *mut i16FirmwareRevision: u32ConsoleInHandle: EFI_HANDLEConIn: *mut EFI_SIMPLE_TEXT_INPUT_PROTOCOLConsoleOutHandle: EFI_HANDLEConOut: *mut EFI_SIMPLE_TEXT_OUTPUT_PROTOCOLStandardErrorHandle: EFI_HANDLEStdErr: *mut EFI_SIMPLE_TEXT_OUTPUT_PROTOCOLRuntimeServices: *mut EFI_RUNTIME_SERVICESBootServices: *mut EFI_BOOT_SERVICESNumberOfTableEntries: usizeConfigurationTable: *mut EFI_CONFIGURATION_TABLE

Trait Implementations

impl Clone for EFI_SYSTEM_TABLE[src]

impl Copy for EFI_SYSTEM_TABLE[src]

impl Debug for EFI_SYSTEM_TABLE[src]

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.