Struct isla_axiomatic::sandbox::SandboxedCommand[][src]

pub struct SandboxedCommand { /* fields omitted */ }

Implementations

impl SandboxedCommand[src]

pub fn from_tool(tool: &Tool) -> Self[src]

pub fn new<S: AsRef<OsStr>>(program: S) -> Self[src]

pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Self[src]

pub fn args<I, S>(&mut self, args: I) -> &mut Self where
    I: IntoIterator<Item = S>,
    S: AsRef<OsStr>, 
[src]

pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

pub fn stderr<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

pub fn output(&mut self) -> Result<Output>[src]

pub fn spawn(&mut self) -> Result<Child>[src]

pub fn status(&mut self) -> Result<ExitStatus>[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.