Trait CommandExt

Source
pub trait CommandExt: Sealed {
    type Output;

    // Required method
    fn spawn_pty<'a>(&mut self) -> Result<(Self::Output, Pty<'a>)>;
}

Required Associated Types§

Required Methods§

Source

fn spawn_pty<'a>(&mut self) -> Result<(Self::Output, Pty<'a>)>

Implementations on Foreign Types§

Source§

impl CommandExt for Command

Source§

type Output = Child

Source§

fn spawn_pty<'a>(&mut self) -> Result<(Self::Output, Pty<'a>)>

Implementors§