pub enum KernelLockdownMode {
Integrity,
Confidentiality,
}Expand description
Required host kernel lockdown mode, when asserted by the runtime.
Variants§
Integrity
Integrity mode blocks kernel writes from privileged userspace.
Confidentiality
Confidentiality mode additionally blocks kernel data disclosure paths.
Implementations§
Trait Implementations§
Source§impl Clone for KernelLockdownMode
impl Clone for KernelLockdownMode
Source§fn clone(&self) -> KernelLockdownMode
fn clone(&self) -> KernelLockdownMode
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 moreSource§impl Debug for KernelLockdownMode
impl Debug for KernelLockdownMode
Source§impl PartialEq for KernelLockdownMode
impl PartialEq for KernelLockdownMode
Source§impl ValueEnum for KernelLockdownMode
impl ValueEnum for KernelLockdownMode
impl Copy for KernelLockdownMode
impl Eq for KernelLockdownMode
impl StructuralPartialEq for KernelLockdownMode
Auto Trait Implementations§
impl Freeze for KernelLockdownMode
impl RefUnwindSafe for KernelLockdownMode
impl Send for KernelLockdownMode
impl Sync for KernelLockdownMode
impl Unpin for KernelLockdownMode
impl UnsafeUnpin for KernelLockdownMode
impl UnwindSafe for KernelLockdownMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.