pub enum TerminalSandbox {
None,
Docker,
}Expand description
Terminal execution sandbox mode.
Variants§
None
Direct host execution (default). Hardline blocks still apply.
Docker
Wrap every command in docker run --rm with hardened flags.
Trait Implementations§
Source§impl Clone for TerminalSandbox
impl Clone for TerminalSandbox
Source§fn clone(&self) -> TerminalSandbox
fn clone(&self) -> TerminalSandbox
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 moreSource§impl Debug for TerminalSandbox
impl Debug for TerminalSandbox
Source§impl Default for TerminalSandbox
impl Default for TerminalSandbox
Source§fn default() -> TerminalSandbox
fn default() -> TerminalSandbox
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TerminalSandbox
impl<'de> Deserialize<'de> for TerminalSandbox
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
Source§impl PartialEq for TerminalSandbox
impl PartialEq for TerminalSandbox
Source§fn eq(&self, other: &TerminalSandbox) -> bool
fn eq(&self, other: &TerminalSandbox) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TerminalSandbox
impl Serialize for TerminalSandbox
impl Eq for TerminalSandbox
impl StructuralPartialEq for TerminalSandbox
Auto Trait Implementations§
impl Freeze for TerminalSandbox
impl RefUnwindSafe for TerminalSandbox
impl Send for TerminalSandbox
impl Sync for TerminalSandbox
impl Unpin for TerminalSandbox
impl UnsafeUnpin for TerminalSandbox
impl UnwindSafe for TerminalSandbox
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.