Struct carapace::Command[][src]

pub struct Command {
    pub config: SandboxConfig,
}

Fields

config: SandboxConfig

Implementations

impl Command[src]

pub fn new(bin: impl Into<PathBuf>) -> Self[src]

pub fn run(&self) -> Result<SandboxOutput>[src]

pub fn arg(&mut self, a: impl Into<OsString>) -> &mut Self[src]

pub fn arg_if(&mut self, cond: bool, a: impl Into<OsString>) -> &mut Self[src]

pub fn inherit_env(&mut self, k: impl Into<OsString>) -> &mut Self[src]

pub fn add_env(
    &mut self,
    k: impl Into<OsString>,
    v: impl AsRef<OsStr>
) -> &mut Self
[src]

pub fn bindmount_ro(
    &mut self,
    src: impl Into<PathBuf>,
    dst: impl Into<PathBuf>
) -> &mut Self
[src]

pub fn chroot(&mut self, chroot: impl Into<PathBuf>) -> &mut Self[src]

pub fn stdio(
    &mut self,
    stdin: impl Into<PathBuf>,
    stdout: impl Into<PathBuf>,
    stderr: impl Into<PathBuf>
) -> &mut Self
[src]

pub fn mount_proc(&mut self, path: impl Into<PathBuf>) -> &mut Self[src]

Auto Trait Implementations

impl RefUnwindSafe for Command

impl Send for Command

impl Sync for Command

impl Unpin for Command

impl UnwindSafe for Command

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,