pub enum ProcessError {
WaitChildFail,
SpawnProcessFail(Error),
Quit,
}Expand description
Errors that can occur during process operations.
Variants§
WaitChildFail
Failed to wait for child process.
SpawnProcessFail(Error)
Failed to spawn the process.
Quit
Process was terminated.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ProcessError
impl !UnwindSafe for ProcessError
impl Freeze for ProcessError
impl Send for ProcessError
impl Sync for ProcessError
impl Unpin for ProcessError
impl UnsafeUnpin for ProcessError
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