pub enum SandboxBackend {
Seatbelt,
Bubblewrap,
ProcessContainer,
Unsupported,
Unknown,
}Expand description
Process-containment backend selected for the host platform
Variants§
Seatbelt
Apple Seatbelt process sandbox.
Bubblewrap
Linux Bubblewrap process sandbox.
ProcessContainer
Windows ProcessContainer sandbox.
Unsupported
No supported process-containment backend is available.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for SandboxBackend
impl Clone for SandboxBackend
Source§impl Debug for SandboxBackend
impl Debug for SandboxBackend
Source§impl Default for SandboxBackend
impl Default for SandboxBackend
Source§impl<'de> Deserialize<'de> for SandboxBackend
impl<'de> Deserialize<'de> for SandboxBackend
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 SandboxBackend
Source§impl PartialEq for SandboxBackend
impl PartialEq for SandboxBackend
Source§impl Serialize for SandboxBackend
impl Serialize for SandboxBackend
impl StructuralPartialEq for SandboxBackend
Auto Trait Implementations§
impl Freeze for SandboxBackend
impl RefUnwindSafe for SandboxBackend
impl Send for SandboxBackend
impl Sync for SandboxBackend
impl Unpin for SandboxBackend
impl UnsafeUnpin for SandboxBackend
impl UnwindSafe for SandboxBackend
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.