pub struct UefiConfig {
pub custom_uefi_vars: CustomVars,
pub secure_boot: bool,
pub initial_generation_id: [u8; 16],
pub use_mmio: bool,
pub command_set: UefiCommandSet,
}
Expand description
Various bits of static configuration data.
Fields§
§custom_uefi_vars: CustomVars
§secure_boot: bool
§initial_generation_id: [u8; 16]
§use_mmio: bool
§command_set: UefiCommandSet
Trait Implementations§
Source§impl Clone for UefiConfig
impl Clone for UefiConfig
Source§fn clone(&self) -> UefiConfig
fn clone(&self) -> UefiConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for UefiConfig
impl RefUnwindSafe for UefiConfig
impl Send for UefiConfig
impl Sync for UefiConfig
impl Unpin for UefiConfig
impl UnwindSafe for UefiConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more