Enum bitflags::__core::net::IpAddr [] [src]

pub enum IpAddr {
    V4(Ipv4Addr),
    V6(Ipv6Addr),
}
1.7.0
[]

An IP address, either an IPv4 or IPv6 address.

Variants

V4

Representation of an IPv4 address.

V6

Representation of an IPv6 address.