pub enum CapSet {
Ambient,
Bounding,
Effective,
Inheritable,
Permitted,
}
Expand description
Linux capabilities sets.
All capabilities sets supported by Linux, including standard
POSIX and custom ones. See capabilities(7)
.
Variants
Ambient
Ambient capabilities set (from Linux 4.3).
Bounding
Bounding capabilities set (from Linux 2.6.25)
Effective
Effective capabilities set (from POSIX)
Inheritable
Inheritable capabilities set (from POSIX)
Permitted
Permitted capabilities set (from POSIX)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CapSet
impl Send for CapSet
impl Sync for CapSet
impl Unpin for CapSet
impl UnwindSafe for CapSet
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more