pub struct SpawnResult {
pub child: Child,
/* private fields */
}Expand description
Result of a spawn operation.
This struct holds the Child process handle and ensures that any temporary
files created for the script live as long as the handle.
Fields§
§child: ChildTrait Implementations§
Auto Trait Implementations§
impl Freeze for SpawnResult
impl !RefUnwindSafe for SpawnResult
impl Send for SpawnResult
impl Sync for SpawnResult
impl Unpin for SpawnResult
impl !UnwindSafe for SpawnResult
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