pub struct ProcessNotFoundError {
pub pid: u32,
}Expand description
Process not found error.
Fields§
§pid: u32The process ID that was not found.
Implementations§
Trait Implementations§
Source§impl Debug for ProcessNotFoundError
impl Debug for ProcessNotFoundError
Source§impl Display for ProcessNotFoundError
impl Display for ProcessNotFoundError
Source§impl Error for ProcessNotFoundError
impl Error for ProcessNotFoundError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ProcessNotFoundError
impl RefUnwindSafe for ProcessNotFoundError
impl Send for ProcessNotFoundError
impl Sync for ProcessNotFoundError
impl Unpin for ProcessNotFoundError
impl UnsafeUnpin for ProcessNotFoundError
impl UnwindSafe for ProcessNotFoundError
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