pub struct UefiVarsDelta {
pub signatures: SignaturesDelta,
pub non_signature_vars: Vec<(String, UefiVar)>,
}Expand description
Changes to apply to a collection of UEFI nvram variables.
Fields§
§signatures: SignaturesDeltaSecure Boot signature vars
non_signature_vars: Vec<(String, UefiVar)>UEFI vars that are not Secure Boot signature vars
Trait Implementations§
Source§impl Clone for UefiVarsDelta
impl Clone for UefiVarsDelta
Source§fn clone(&self) -> UefiVarsDelta
fn clone(&self) -> UefiVarsDelta
Returns a duplicate 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 UefiVarsDelta
impl RefUnwindSafe for UefiVarsDelta
impl Send for UefiVarsDelta
impl Sync for UefiVarsDelta
impl Unpin for UefiVarsDelta
impl UnsafeUnpin for UefiVarsDelta
impl UnwindSafe for UefiVarsDelta
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