Enum netstat::TcpState[][src]

pub enum TcpState {
    Closed,
    Listen,
    SynSent,
    SynReceived,
    Established,
    FinWait1,
    FinWait2,
    CloseWait,
    Closing,
    LastAck,
    TimeWait,
    DeleteTcb,
}

State of TCP connection.

Variants

Trait Implementations

impl From<u8> for TcpState
[src]

Performs the conversion.

impl Copy for TcpState
[src]

impl Clone for TcpState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TcpState
[src]

Formats the value using the given formatter. Read more

impl Display for TcpState
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TcpState

impl Sync for TcpState