pub enum ClsFlags {
SkipHw = 1,
SkipSw = 2,
InHw = 4,
NotInNw = 8,
Verbose = 16,
}Available on crate feature
tc 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 ClsFlags
impl RefUnwindSafe for ClsFlags
impl Send for ClsFlags
impl Sync for ClsFlags
impl Unpin for ClsFlags
impl UnsafeUnpin for ClsFlags
impl UnwindSafe for ClsFlags
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