Enum netstat::ProtocolSocketInfo[][src]

pub enum ProtocolSocketInfo {
    Tcp(TcpSocketInfo),
    Udp(UdpSocketInfo),
}

Protocol-specific socket information.

Variants

TCP-specific socket information.

UDP-specific socket information.

Trait Implementations

impl Clone for ProtocolSocketInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProtocolSocketInfo
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations