pub enum OpFlags {
AdminPerm = 1,
CmdCapDo = 2,
CmdCapDump = 4,
CmdCapHaspol = 8,
UnsAdminPerm = 16,
}Available on crate feature
nlctrl only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpFlags
impl RefUnwindSafe for OpFlags
impl Send for OpFlags
impl Sync for OpFlags
impl Unpin for OpFlags
impl UnwindSafe for OpFlags
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