[][src]Struct rfc5444::AddressBlock

pub struct AddressBlock<'a> {
    pub num_addr: usize,
    pub head: Option<&'a [u8]>,
    pub tail: Option<&'a [u8]>,
    pub mid: Option<&'a [u8]>,
    pub prefix_lengths: Option<&'a [u8]>,
}

Fields

num_addr: usize

Address count.

head: Option<&'a [u8]>
tail: Option<&'a [u8]>
mid: Option<&'a [u8]>
prefix_lengths: Option<&'a [u8]>

Prefix lengths

Trait Implementations

impl<'a> Debug for AddressBlock<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AddressBlock<'a>

impl<'a> Send for AddressBlock<'a>

impl<'a> Sync for AddressBlock<'a>

impl<'a> Unpin for AddressBlock<'a>

impl<'a> UnwindSafe for AddressBlock<'a>

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