pub enum Enforcement {
FullyEnforced,
Partial,
Unavailable,
}Expand description
How strongly a backend enforces a given SandboxProfile.
Mirrors the intended saorsa-sandbox (XSY-0027) semantics; the concrete
shared-crate shape is reconciled at WP-5/4e. SandboxPolicy decides
what to do when enforcement falls short of the requested profile.
Variants§
FullyEnforced
The profile is enforced in full (e.g. Seatbelt/bubblewrap active and covering every requested restriction).
Partial
Some restrictions hold, others do not (e.g. network blocked but writes only path-confined, not kernel-enforced).
The backend is absent or cannot enforce the profile at all.
Trait Implementations§
Source§impl Clone for Enforcement
impl Clone for Enforcement
Source§fn clone(&self) -> Enforcement
fn clone(&self) -> Enforcement
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 Enforcement
Source§impl Debug for Enforcement
impl Debug for Enforcement
impl Eq for Enforcement
Source§impl PartialEq for Enforcement
impl PartialEq for Enforcement
Source§fn eq(&self, other: &Enforcement) -> bool
fn eq(&self, other: &Enforcement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Enforcement
Auto Trait Implementations§
impl Freeze for Enforcement
impl RefUnwindSafe for Enforcement
impl Send for Enforcement
impl Sync for Enforcement
impl Unpin for Enforcement
impl UnsafeUnpin for Enforcement
impl UnwindSafe for Enforcement
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