[][src]Enum domain::base::name::UncertainChainIter

pub enum UncertainChainIter<'a, Octets: AsRef<[u8]>, R: ToLabelIter<'a>> {
    Absolute(DnameIter<'a>),
    Relative(ChainIter<'a, UncertainDname<Octets>, R>),
}

The label iterator for domain name chains with uncertain domain names.

Variants

Absolute(DnameIter<'a>)
Relative(ChainIter<'a, UncertainDname<Octets>, R>)

Trait Implementations

impl<'a, Octets, R> Clone for UncertainChainIter<'a, Octets, R> where
    Octets: AsRef<[u8]>,
    R: ToLabelIter<'a>, 
[src]

impl<'a, Octets, R> DoubleEndedIterator for UncertainChainIter<'a, Octets, R> where
    Octets: AsRef<[u8]>,
    R: ToLabelIter<'a>, 
[src]

impl<'a, Octets, R> Iterator for UncertainChainIter<'a, Octets, R> where
    Octets: AsRef<[u8]>,
    R: ToLabelIter<'a>, 
[src]

type Item = &'a Label

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, Octets, R> RefUnwindSafe for UncertainChainIter<'a, Octets, R> where
    <R as ToLabelIter<'a>>::LabelIter: RefUnwindSafe

impl<'a, Octets, R> Send for UncertainChainIter<'a, Octets, R> where
    <R as ToLabelIter<'a>>::LabelIter: Send

impl<'a, Octets, R> Sync for UncertainChainIter<'a, Octets, R> where
    <R as ToLabelIter<'a>>::LabelIter: Sync

impl<'a, Octets, R> Unpin for UncertainChainIter<'a, Octets, R> where
    <R as ToLabelIter<'a>>::LabelIter: Unpin

impl<'a, Octets, R> UnwindSafe for UncertainChainIter<'a, Octets, R> where
    <R as ToLabelIter<'a>>::LabelIter: 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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>,