pub trait IpAddress: Debug {
    fn with_port(&self, port: u16) -> SocketAddr;
}

Required Methods

Implementors