[][src]Struct viaspf::record::Ip6

pub struct Ip6 {
    pub addr: Ipv6Addr,
    pub prefix_len: Option<Ip6CidrLength>,
}

An ip6 mechanism.

Fields

addr: Ipv6Addr

The mechanism’s network address.

prefix_len: Option<Ip6CidrLength>

The mechanism’s CIDR prefix length.

Trait Implementations

impl Clone for Ip6[src]

impl Copy for Ip6[src]

impl Debug for Ip6[src]

impl Display for Ip6[src]

impl Eq for Ip6[src]

impl From<Ip6> for Mechanism[src]

impl Hash for Ip6[src]

impl Ord for Ip6[src]

impl PartialEq<Ip6> for Ip6[src]

impl PartialOrd<Ip6> for Ip6[src]

impl StructuralEq for Ip6[src]

impl StructuralPartialEq for Ip6[src]

Auto Trait Implementations

impl RefUnwindSafe for Ip6

impl Send for Ip6

impl Sync for Ip6

impl Unpin for Ip6

impl UnwindSafe for Ip6

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> 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.