pub type StderrPipe = Pipe<ChildStderr, ChildStdin>;
Aliased Type§
pub struct StderrPipe { /* private fields */ }
Implementations§
Source§impl StderrPipe
impl StderrPipe
pub async fn from_app<S: AsRef<OsStr>>(program: S) -> ProcessPipeResult<Self>
pub async fn from_app_args<S: AsRef<OsStr>, I: IntoIterator<Item = S>>( program: S, args: I, ) -> ProcessPipeResult<Self>
pub fn spawn_command(value: Command) -> ProcessPipeResult<Self>
Trait Implementations§
Source§impl From<(ChildStdin, ChildStderr)> for StderrPipe
impl From<(ChildStdin, ChildStderr)> for StderrPipe
Source§fn from(value: (ChildStdin, ChildStderr)) -> Self
fn from(value: (ChildStdin, ChildStderr)) -> Self
Converts to this type from the input type.