[−][src]Struct reqwest::header::GetAll
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]
T: 'a,
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: Debug,
[src]
T: Debug,
impl<'a, 'b, T> IntoIterator for &'b GetAll<'a, T> where
'b: 'a,
[src]
'b: 'a,
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?
fn into_iter(self) -> ValueIter<'a, T>
[src]
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?
fn into_iter(self) -> ValueIter<'a, T>
[src]
impl<'a, T> PartialEq<GetAll<'a, T>> for GetAll<'a, T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
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?
fn into_iter(self) -> I
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,