Home
last modified time | relevance | path

Searched refs:Stdio (Results 1 – 1 of 1) sorted by relevance

/NovaShell/src/
H A Dparser.rs5 process::{Child, ChildStdout, Stdio},
342 pub fn as_std(&mut self) -> Stdio { in as_std() argument
344 RedirectStdout::Stdout(child_stdout) => Stdio::from(child_stdout.take().unwrap()), in as_std()
345 RedirectStdout::RawPipe(fd) => unsafe { Stdio::from_raw_fd(*fd) }, in as_std()
590 child_command.stdout(unsafe { Stdio::from_raw_fd(*fd) }); in execute()
596 child_command.stdout(Stdio::piped()); in execute()