[][src]Struct viaspf::record::Ip6CidrLength

pub struct Ip6CidrLength(_);

An IPv6 CIDR prefix length.

Implementations

impl Ip6CidrLength[src]

pub fn new(len: u8) -> Option<Self>[src]

Creates an IPv6 CIDR prefix length with the given value, if it is within bounds.

pub fn get(self) -> u8[src]

Returns the CIDR prefix length’s integer value.

Trait Implementations

impl Clone for Ip6CidrLength[src]

impl Copy for Ip6CidrLength[src]

impl Debug for Ip6CidrLength[src]

impl Default for Ip6CidrLength[src]

impl Display for Ip6CidrLength[src]

impl Eq for Ip6CidrLength[src]

impl From<Ip6CidrLength> for DualCidrLength[src]

impl From<Ip6CidrLength> for u8[src]

impl Hash for Ip6CidrLength[src]

impl Ord for Ip6CidrLength[src]

impl PartialEq<Ip6CidrLength> for Ip6CidrLength[src]

impl PartialOrd<Ip6CidrLength> for Ip6CidrLength[src]

impl StructuralEq for Ip6CidrLength[src]

impl StructuralPartialEq for Ip6CidrLength[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> 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.