pub trait InetSocketAddressExt: 'static {
    fn address(&self) -> InetAddress;
    fn flowinfo(&self) -> u32;
    fn port(&self) -> u16;
    fn scope_id(&self) -> u32;
}

Required methods

Implementors