pub enum CgroupError {
CreationFailed {
reason: String,
},
KillFailed {
path: String,
reason: String,
},
NotFound {
path: String,
},
PermissionDenied {
path: String,
owner: SliceOwner,
},
Io(Error),
}Expand description
Errors from cgroup operations.
Variants§
Trait Implementations§
Source§impl Debug for CgroupError
impl Debug for CgroupError
Source§impl Display for CgroupError
impl Display for CgroupError
Source§impl Error for CgroupError
impl Error for CgroupError
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 CgroupError
impl !RefUnwindSafe for CgroupError
impl Send for CgroupError
impl Sync for CgroupError
impl Unpin for CgroupError
impl UnsafeUnpin for CgroupError
impl !UnwindSafe for CgroupError
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