pub enum StdioMode {
Inherit,
Null,
Pipe,
}Expand description
Routing for one standard process stream.
Variants§
Inherit
Connect the child stream to the launcher process’s corresponding standard stream.
Null
Connect the child stream to the platform’s null device.
Pipe
Ask the backend to create a pipe for the caller.
Trait Implementations§
impl Copy for StdioMode
impl Eq for StdioMode
impl StructuralPartialEq for StdioMode
Auto Trait Implementations§
impl Freeze for StdioMode
impl RefUnwindSafe for StdioMode
impl Send for StdioMode
impl Sync for StdioMode
impl Unpin for StdioMode
impl UnsafeUnpin for StdioMode
impl UnwindSafe for StdioMode
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