pub enum CtKeys {
Show 24 variants
State = 0,
Direction = 1,
Status = 2,
Mark = 3,
Secmark = 4,
Expiration = 5,
Helper = 6,
L3protocol = 7,
Src = 8,
Dst = 9,
Protocol = 10,
ProtoSrc = 11,
ProtoDst = 12,
Labels = 13,
Pkts = 14,
Bytes = 15,
Avgpkt = 16,
Zone = 17,
Eventmask = 18,
SrcIp = 19,
DstIp = 20,
SrcIp6 = 21,
DstIp6 = 22,
CtId = 23,
}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§
State = 0
Direction = 1
Status = 2
Mark = 3
Secmark = 4
Expiration = 5
Helper = 6
L3protocol = 7
Src = 8
Dst = 9
Protocol = 10
ProtoSrc = 11
ProtoDst = 12
Labels = 13
Pkts = 14
Bytes = 15
Avgpkt = 16
Zone = 17
Eventmask = 18
SrcIp = 19
DstIp = 20
SrcIp6 = 21
DstIp6 = 22
CtId = 23
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CtKeys
impl RefUnwindSafe for CtKeys
impl Send for CtKeys
impl Sync for CtKeys
impl Unpin for CtKeys
impl UnsafeUnpin for CtKeys
impl UnwindSafe for CtKeys
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