pub enum ProtectionState {
Strict,
Degradable,
Disabled,
}Expand description
What a ProtectionPolicy instructs sandlock to do with a given
Protection.
Variants§
Strict
Enforce; if the host kernel cannot provide this protection,
confine_inner returns an error naming the protection and the
kernel’s actual ABI version. This is the default for every
protection.
Degradable
Enforce where the host kernel supports it; skip silently when
it does not. The skip is observable via Sandbox::active_protections()
and sandlock check.
Disabled
Never enforce, even on a host kernel that supports the protection. Intended for workloads that genuinely need the capability the protection blocks.
Trait Implementations§
Source§impl Clone for ProtectionState
impl Clone for ProtectionState
Source§fn clone(&self) -> ProtectionState
fn clone(&self) -> ProtectionState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProtectionState
Source§impl Debug for ProtectionState
impl Debug for ProtectionState
Source§impl<'de> Deserialize<'de> for ProtectionState
impl<'de> Deserialize<'de> for ProtectionState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProtectionState
Source§impl PartialEq for ProtectionState
impl PartialEq for ProtectionState
Source§fn eq(&self, other: &ProtectionState) -> bool
fn eq(&self, other: &ProtectionState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProtectionState
impl Serialize for ProtectionState
impl StructuralPartialEq for ProtectionState
Auto Trait Implementations§
impl Freeze for ProtectionState
impl RefUnwindSafe for ProtectionState
impl Send for ProtectionState
impl Sync for ProtectionState
impl Unpin for ProtectionState
impl UnsafeUnpin for ProtectionState
impl UnwindSafe for ProtectionState
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.