pub struct SandboxDetectionInputs<'a> {
pub env_pairs: Vec<(String, String)>,
pub dockerenv_exists: bool,
pub containerenv_exists: bool,
pub proc_1_cgroup: Option<&'a str>,
}Fields§
§env_pairs: Vec<(String, String)>§dockerenv_exists: bool§containerenv_exists: bool§proc_1_cgroup: Option<&'a str>Trait Implementations§
Source§impl<'a> Clone for SandboxDetectionInputs<'a>
impl<'a> Clone for SandboxDetectionInputs<'a>
Source§fn clone(&self) -> SandboxDetectionInputs<'a>
fn clone(&self) -> SandboxDetectionInputs<'a>
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<'a> Debug for SandboxDetectionInputs<'a>
impl<'a> Debug for SandboxDetectionInputs<'a>
Source§impl<'a> PartialEq for SandboxDetectionInputs<'a>
impl<'a> PartialEq for SandboxDetectionInputs<'a>
impl<'a> Eq for SandboxDetectionInputs<'a>
impl<'a> StructuralPartialEq for SandboxDetectionInputs<'a>
Auto Trait Implementations§
impl<'a> Freeze for SandboxDetectionInputs<'a>
impl<'a> RefUnwindSafe for SandboxDetectionInputs<'a>
impl<'a> Send for SandboxDetectionInputs<'a>
impl<'a> Sync for SandboxDetectionInputs<'a>
impl<'a> Unpin for SandboxDetectionInputs<'a>
impl<'a> UnsafeUnpin for SandboxDetectionInputs<'a>
impl<'a> UnwindSafe for SandboxDetectionInputs<'a>
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