pub enum Stdio {
Inherit,
Null,
MakePipe,
Fd(FileDesc),
}
Variants§
Implementations§
source§impl Stdio
impl Stdio
pub fn to_child_stdio( &self, readable: bool ) -> Result<(ChildStdio, Option<AnonPipe>)>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Stdio
impl Send for Stdio
impl Sync for Stdio
impl Unpin for Stdio
impl UnwindSafe for Stdio
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