pub struct Streaming {
pub child: Child,
pub command: Command,
}
Expand description
A handle to the result an asynchronous invocation.
Fields§
§child: Child
The handle to the live child process (live until Child::output
is
called).
command: Command
The command being executed.
Implementations§
Auto Trait Implementations§
impl Freeze for Streaming
impl RefUnwindSafe for Streaming
impl Send for Streaming
impl Sync for Streaming
impl Unpin for Streaming
impl UnwindSafe for Streaming
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