pub enum ConntrackState {
New,
Established,
Related,
Invalid,
TimeWait,
}Expand description
High-level connection tracking state
Variants§
New
First packet of a new connection
Established
Connection has seen traffic in both directions
Related
Related to an existing connection (e.g., ICMP error, FTP data)
Invalid
Invalid or unexpected packet
TimeWait
TCP TIME_WAIT state
Trait Implementations§
Source§impl Clone for ConntrackState
impl Clone for ConntrackState
Source§fn clone(&self) -> ConntrackState
fn clone(&self) -> ConntrackState
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConntrackState
impl Debug for ConntrackState
Source§impl Default for ConntrackState
impl Default for ConntrackState
Source§fn default() -> ConntrackState
fn default() -> ConntrackState
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConntrackState
impl PartialEq for ConntrackState
impl Copy for ConntrackState
impl Eq for ConntrackState
impl StructuralPartialEq for ConntrackState
Auto Trait Implementations§
impl Freeze for ConntrackState
impl RefUnwindSafe for ConntrackState
impl Send for ConntrackState
impl Sync for ConntrackState
impl Unpin for ConntrackState
impl UnwindSafe for ConntrackState
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)