pub struct GetAll<'a, T: 'a> { /* fields omitted */ }
A view to all values stored in a single entry.
This struct is returned by HeaderMap::get_all
.
Returns an iterator visiting all values associated with the entry.
Values are iterated in insertion order.
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());
[+]
[+]
[−]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
[−]
This method tests for !=
.
[+]
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?
[−]
[+]
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?
[−]