pub enum FibFlags {
Saddr = 1,
Daddr = 2,
Mark = 4,
Iif = 8,
Oif = 16,
Present = 32,
}Available on crate feature
nftables 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 FibFlags
impl RefUnwindSafe for FibFlags
impl Send for FibFlags
impl Sync for FibFlags
impl Unpin for FibFlags
impl UnsafeUnpin for FibFlags
impl UnwindSafe for FibFlags
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