Struct reqwest::header::GetAll [−][src]
pub struct GetAll<'a, T> { /* fields omitted */ }
A view to all values stored in a single entry.
This struct is returned by HeaderMap::get_all
.
Implementations
impl<'a, T> GetAll<'a, T> where
T: 'a,
[src]
impl<'a, T> GetAll<'a, T> where
T: 'a,
[src]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, 'b, T> IntoIterator for &'b GetAll<'a, T> where
'b: 'a,
[src]
impl<'a, 'b, T> IntoIterator for &'b GetAll<'a, T> where
'b: 'a,
[src]Auto Trait Implementations
impl<'a, T> RefUnwindSafe for GetAll<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T> Send for GetAll<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Sync for GetAll<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Unpin for GetAll<'a, T>
impl<'a, T> UnwindSafe for GetAll<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]