[][src]Struct hyper::header::GetAll

pub struct GetAll<'a, T> where
    T: 'a + 'a, 
{ /* fields omitted */ }

A view to all values stored in a single entry.

This struct is returned by HeaderMap::get_all.

Methods

impl<'a, T> GetAll<'a, T> where
    T: 'a, 
[src]

Important traits for ValueIter<'a, T>
pub fn iter(&self) -> ValueIter<'a, T>[src]

Returns an iterator visiting all values associated with the entry.

Values are iterated in insertion order.

Examples

let mut map = HeaderMap::new();
map.insert(HOST, "hello.world".parse().unwrap());
map.append(HOST, "hello.earth".parse().unwrap());

let values = map.get_all("host");
let mut iter = values.iter();
assert_eq!(&"hello.world", iter.next().unwrap());
assert_eq!(&"hello.earth", iter.next().unwrap());
assert!(iter.next().is_none());

Trait Implementations

impl<'a, T> Debug for GetAll<'a, T> where
    T: 'a + Debug
[src]

impl<'a, 'b, T> IntoIterator for &'b GetAll<'a, T> where
    'b: 'a, 
[src]

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = ValueIter<'a, T>

Which kind of iterator are we turning this into?

impl<'a, T> IntoIterator for GetAll<'a, T>[src]

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = ValueIter<'a, T>

Which kind of iterator are we turning this into?

impl<'a, T> PartialEq<GetAll<'a, T>> for GetAll<'a, T> where
    T: PartialEq<T>, 
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

Auto Trait Implementations

impl<'a, T> Send for GetAll<'a, T> where
    T: Sync

impl<'a, T> Sync for GetAll<'a, T> where
    T: Sync

Blanket Implementations

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

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

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

impl<T> Erased for T