Struct netstat::TcpSocketInfo[][src]

pub struct TcpSocketInfo {
    pub local_addr: IpAddr,
    pub local_port: u16,
    pub remote_addr: IpAddr,
    pub remote_port: u16,
    pub state: TcpState,
}

TCP-specific socket information.

Fields

Trait Implementations

impl Clone for TcpSocketInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TcpSocketInfo
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations