[][src]Struct efw::efi::SystemTable

#[repr(transparent)]
pub struct SystemTable(_);

Contains pointers to the runtime and boot services provided by UEFI.

Methods

impl SystemTable[src]

pub fn get() -> SystemTable[src]

Get a reference to the system table.

pub fn console_in_handle(&self) -> Handle[src]

Handle for the active console input device.

pub fn con_in(&self) -> SimpleTextInput[src]

SimpleTextInput protocol associated with console_in_handle().

pub fn console_out_handle(&self) -> Handle[src]

Handle for the active console output device.

pub fn con_out(&self) -> SimpleTextOutput[src]

SimpleTextOutput protocol associated with console_out_handle().

pub fn standard_error_handle(&self) -> Handle[src]

Handle for the active standard error console device.

pub fn std_err(&self) -> SimpleTextOutput[src]

SimpleTextOutput protocol associated with standard_error_handle().

pub fn runtime_services(&self) -> RuntimeServices[src]

Runtime Services table.

pub fn boot_services(&self) -> BootServices[src]

Boot Services table.

pub fn bits(&mut self) -> *mut SystemTable[src]

Get a pointer to the underlying system table implementation.

Trait Implementations

impl Copy for SystemTable[src]

impl Send for SystemTable[src]

impl Clone for SystemTable[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Sync for SystemTable

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T