Struct r_efi::system::RuntimeServices

source ·
#[repr(C)]
pub struct RuntimeServices {
Show 15 fields pub hdr: TableHeader, pub get_time: RuntimeGetTime, pub set_time: RuntimeSetTime, pub get_wakeup_time: RuntimeGetWakeupTime, pub set_wakeup_time: RuntimeSetWakeupTime, pub set_virtual_address_map: RuntimeSetVirtualAddressMap, pub convert_pointer: RuntimeConvertPointer, pub get_variable: RuntimeGetVariable, pub get_next_variable_name: RuntimeGetNextVariableName, pub set_variable: RuntimeSetVariable, pub get_next_high_mono_count: RuntimeGetNextHighMonoCount, pub reset_system: RuntimeResetSystem, pub update_capsule: RuntimeUpdateCapsule, pub query_capsule_capabilities: RuntimeQueryCapsuleCapabilities, pub query_variable_info: RuntimeQueryVariableInfo,
}

Fields§

§hdr: TableHeader§get_time: RuntimeGetTime§set_time: RuntimeSetTime§get_wakeup_time: RuntimeGetWakeupTime§set_wakeup_time: RuntimeSetWakeupTime§set_virtual_address_map: RuntimeSetVirtualAddressMap§convert_pointer: RuntimeConvertPointer§get_variable: RuntimeGetVariable§get_next_variable_name: RuntimeGetNextVariableName§set_variable: RuntimeSetVariable§get_next_high_mono_count: RuntimeGetNextHighMonoCount§reset_system: RuntimeResetSystem§update_capsule: RuntimeUpdateCapsule§query_capsule_capabilities: RuntimeQueryCapsuleCapabilities§query_variable_info: RuntimeQueryVariableInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.