[][src]Struct tonic::metadata::ValueIter

pub struct ValueIter<'a, VE: ValueEncoding> { /* fields omitted */ }

An iterator of all values associated with a single metadata key.

Trait Implementations

impl<'a, VE: ValueEncoding> Iterator for ValueIter<'a, VE> where
    VE: 'a, 
[src]

type Item = &'a MetadataValue<VE>

The type of the elements being iterated over.

impl<'a, VE: ValueEncoding> DoubleEndedIterator for ValueIter<'a, VE> where
    VE: 'a, 
[src]

impl<'a, VE: Debug + ValueEncoding> Debug for ValueIter<'a, VE>[src]

Auto Trait Implementations

impl<'a, VE> Send for ValueIter<'a, VE> where
    VE: Send

impl<'a, VE> Sync for ValueIter<'a, VE> where
    VE: Sync

impl<'a, VE> Unpin for ValueIter<'a, VE> where
    VE: Unpin

impl<'a, VE> UnwindSafe for ValueIter<'a, VE> where
    VE: UnwindSafe

impl<'a, VE> RefUnwindSafe for ValueIter<'a, VE> where
    VE: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<I> IteratorRandom for I where
    I: Iterator
[src]