pub trait HasAddrs {
    fn addrs(&self) -> &[SocketAddr];
}
Expand description

An object that represents a host on the network with known IP addresses.

Required Methods

Return the addresses at which you can connect to this server.

Implementors