[][src]Struct domain::base::opt::rfc7901::Chain

pub struct Chain<Octets> { /* fields omitted */ }

Implementations

impl<Octets> Chain<Octets>[src]

pub fn new(start: Dname<Octets>) -> Self[src]

pub fn push<Target: OctetsBuilder, N: ToDname>(
    builder: &mut OptBuilder<Target>,
    start: &N
) -> Result<(), ShortBuf>
[src]

pub fn start(&self) -> &Dname<Octets>[src]

Trait Implementations

impl<Octets: Clone> Clone for Chain<Octets>[src]

impl<Octets> CodeOptData for Chain<Octets>[src]

impl<Octets: AsRef<[u8]>> Compose for Chain<Octets>[src]

impl<Octets> From<Chain<Octets>> for AllOptData<Octets>[src]

impl<Ref: OctetsRef> Parse<Ref> for Chain<Ref::Range>[src]

Auto Trait Implementations

impl<Octets> RefUnwindSafe for Chain<Octets> where
    Octets: RefUnwindSafe

impl<Octets> Send for Chain<Octets> where
    Octets: Send

impl<Octets> Sync for Chain<Octets> where
    Octets: Sync

impl<Octets> Unpin for Chain<Octets> where
    Octets: Unpin

impl<Octets> UnwindSafe for Chain<Octets> where
    Octets: UnwindSafe

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> OptData for T where
    T: Compose + CodeOptData
[src]

impl<Octets, T> ParseOptData<Octets> for T where
    T: CodeOptData + Parse<Octets> + Compose
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,