pub struct FunChildren { /* private fields */ }Expand description
Representation of running or exited children processes with output, connected with pipes optionally.
Calling spawn_with_output! macro will return Result<FunChildren>
Implementations§
Source§impl FunChildren
impl FunChildren
pub fn wait_with_output(&mut self) -> FunResult
pub fn wait_with_pipe(&mut self, f: &mut dyn FnMut(Box<dyn Read>)) -> CmdResult
Auto Trait Implementations§
impl Freeze for FunChildren
impl !RefUnwindSafe for FunChildren
impl Send for FunChildren
impl Sync for FunChildren
impl Unpin for FunChildren
impl !UnwindSafe for FunChildren
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