pub enum ProcessAsyncError {
RecvError(RecvError),
WaitError(Error),
StdinError(Error),
ExitStatusError(Option<i32>),
AlreadyResolvedError,
}
Variants§
RecvError(RecvError)
WaitError(Error)
StdinError(Error)
ExitStatusError(Option<i32>)
AlreadyResolvedError
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessAsyncError
impl !RefUnwindSafe for ProcessAsyncError
impl Send for ProcessAsyncError
impl Sync for ProcessAsyncError
impl Unpin for ProcessAsyncError
impl !UnwindSafe for ProcessAsyncError
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