pub enum SandboxProfile {
ReadOnly,
Workspace,
NetworkAllowAll,
Off,
}Expand description
Baseline restriction profile for the OS-level sandbox.
Variants§
ReadOnly
Read-only to allow_read paths, no writes, no network.
Workspace
Read/write to configured paths; network egress blocked.
NetworkAllowAll
Workspace-level filesystem access plus unrestricted network egress.
Off
Sandbox disabled. The subprocess inherits the parent’s full capabilities.
Trait Implementations§
Source§impl Clone for SandboxProfile
impl Clone for SandboxProfile
Source§fn clone(&self) -> SandboxProfile
fn clone(&self) -> SandboxProfile
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 SandboxProfile
impl Debug for SandboxProfile
Source§impl Default for SandboxProfile
impl Default for SandboxProfile
Source§fn default() -> SandboxProfile
fn default() -> SandboxProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SandboxProfile
impl<'de> Deserialize<'de> for SandboxProfile
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SandboxProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SandboxProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SandboxProfile
impl PartialEq for SandboxProfile
Source§impl Serialize for SandboxProfile
impl Serialize for SandboxProfile
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for SandboxProfile
impl Eq for SandboxProfile
impl StructuralPartialEq for SandboxProfile
Auto Trait Implementations§
impl Freeze for SandboxProfile
impl RefUnwindSafe for SandboxProfile
impl Send for SandboxProfile
impl Sync for SandboxProfile
impl Unpin for SandboxProfile
impl UnsafeUnpin for SandboxProfile
impl UnwindSafe for SandboxProfile
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.