pub trait ToIpv6Address { // Required method fn ipv6(&self) -> Result<Ipv6Addr>; }
Trait for converting various types into an IPv6 address.
Attempts to convert the implementing type into an Ipv6Addr. Returns the IPv6 address on success or an error on failure.
Ipv6Addr