pub enum KillByPidError {
Output(Error),
KillProcess,
}Expand description
Error while killing a process forcefully by its PID.
Variants§
Output(Error)
I/O error while capturing the output of the process.
KillProcess
Killing the process failed.
Auto Trait Implementations§
impl Freeze for KillByPidError
impl !RefUnwindSafe for KillByPidError
impl Send for KillByPidError
impl Sync for KillByPidError
impl Unpin for KillByPidError
impl !UnwindSafe for KillByPidError
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