pub enum CmpOps {
Eq = 0,
Neq = 1,
Lt = 2,
Lte = 3,
Gt = 4,
Gte = 5,
}Available on crate feature
nftables only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CmpOps
impl RefUnwindSafe for CmpOps
impl Send for CmpOps
impl Sync for CmpOps
impl Unpin for CmpOps
impl UnsafeUnpin for CmpOps
impl UnwindSafe for CmpOps
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