pub type BackendAddress = IpAddr;
The IP address of the backend. This is a type alias for std::net::IpAddr.
pub enum BackendAddress { V4(Ipv4Addr), V6(Ipv6Addr), }
An IPv4 address.
An IPv6 address.