[][src]Struct cidr::Ipv6Cidr

pub struct Ipv6Cidr { /* fields omitted */ }

Cidr type representing an IPv6 network

Ordering based on lexicographic bitstring representation.

Trait Implementations

impl BitString for Ipv6Cidr[src]

impl Cidr for Ipv6Cidr[src]

type Address = Ipv6Addr

Type for the underlying address (IpAddr, Ipv4Addr or Ipv6Addr). Read more

type Inet = Ipv6Inet

Corresponding Inet type (representing an address + a network containing it) Read more

impl Clone for Ipv6Cidr[src]

impl Debug for Ipv6Cidr[src]

impl<'de> Deserialize<'de> for Ipv6Cidr[src]

impl Display for Ipv6Cidr[src]

impl Eq for Ipv6Cidr[src]

impl From<Ipv6Cidr> for AnyIpCidr[src]

impl From<Ipv6Cidr> for IpCidr[src]

impl FromStr for Ipv6Cidr[src]

type Err = NetworkParseError

The associated error which can be returned from parsing.

impl Hash for Ipv6Cidr[src]

impl Ord for Ipv6Cidr[src]

impl PartialEq<Ipv6Cidr> for Ipv6Cidr[src]

impl PartialOrd<Ipv6Cidr> for Ipv6Cidr[src]

impl Serialize for Ipv6Cidr[src]

impl StructuralEq for Ipv6Cidr[src]

impl StructuralPartialEq for Ipv6Cidr[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.