pub enum RunnerStdioMode {
Files {
stdout: File,
stderr: File,
},
Piped,
}Expand description
Selects how the runner child’s stdout and stderr are wired.
Variants§
Files
Redirects stdout and stderr into provided files.
Piped
Captures stdout and stderr through Tokio pipes.
Auto Trait Implementations§
impl Freeze for RunnerStdioMode
impl RefUnwindSafe for RunnerStdioMode
impl Send for RunnerStdioMode
impl Sync for RunnerStdioMode
impl Unpin for RunnerStdioMode
impl UnsafeUnpin for RunnerStdioMode
impl UnwindSafe for RunnerStdioMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more