pub struct Spawned {
pub id: ProcId,
pub pid: Option<u32>,
pub stdout: Pin<Box<dyn Stream<Item = Vec<u8>> + Send>>,
pub stderr: Pin<Box<dyn Stream<Item = Vec<u8>> + Send>>,
}Fields§
§id: ProcId§pid: Option<u32>§stdout: Pin<Box<dyn Stream<Item = Vec<u8>> + Send>>§stderr: Pin<Box<dyn Stream<Item = Vec<u8>> + Send>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Spawned
impl !RefUnwindSafe for Spawned
impl Send for Spawned
impl !Sync for Spawned
impl Unpin for Spawned
impl !UnwindSafe for Spawned
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