Skip to main content

BackendAddress

Type Alias BackendAddress 

Source
pub type BackendAddress = IpAddr;
Expand description

The IP address of the backend. This is a type alias for std::net::IpAddr.

Aliased Type§

pub enum BackendAddress {
    V4(Ipv4Addr),
    V6(Ipv6Addr),
}

Variants§

§1.7.0

V4(Ipv4Addr)

An IPv4 address.

§1.7.0

V6(Ipv6Addr)

An IPv6 address.