pub struct Spawned {
pub name: &'static str,
pub child: Result<Child, Error>,
pub stdout: JoinHandle<Vec<u8>>,
pub stderr: JoinHandle<Vec<u8>>,
pub flags: CheckFlags,
}Fields§
§name: &'static str§child: Result<Child, Error>§stdout: JoinHandle<Vec<u8>>§stderr: JoinHandle<Vec<u8>>§flags: CheckFlagsImplementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Spawned
impl !UnwindSafe for Spawned
impl Freeze for Spawned
impl Send for Spawned
impl Sync for Spawned
impl Unpin for Spawned
impl UnsafeUnpin 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