Struct ValueIterMut

pub struct ValueIterMut<'a, T> { /* private fields */ }

A mutable iterator of all values associated with a single header name.

Trait Implementations

impl<'a, T> FusedIterator for ValueIterMut<'a, T>

impl<'a, T: 'a> DoubleEndedIterator for ValueIterMut<'a, T>

fn next_back(&mut self) -> Option<Self::Item>

impl<'a, T: 'a> Iterator for ValueIterMut<'a, T>

type Item = &'a mut T;
fn next(&mut self) -> Option<Self::Item>

impl<'a, T: Debug> Debug for ValueIterMut<'a, T>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'a, T: Send> Send for ValueIterMut<'a, T>

impl<'a, T: Sync> Sync for ValueIterMut<'a, T>

Auto Trait Implementations

impl<'a, T> !UnwindSafe for ValueIterMut<'a, T>

impl<'a, T> Freeze for ValueIterMut<'a, T> where *mut Bucket<T>: Freeze, *mut ExtraValue<T>: Freeze, PhantomData<&'a mut HeaderMap<T>>: Freeze,

impl<'a, T> RefUnwindSafe for ValueIterMut<'a, T> where *mut Bucket<T>: RefUnwindSafe, *mut ExtraValue<T>: RefUnwindSafe, PhantomData<&'a mut HeaderMap<T>>: RefUnwindSafe,

impl<'a, T> Unpin for ValueIterMut<'a, T> where *mut Bucket<T>: Unpin, *mut ExtraValue<T>: Unpin, PhantomData<&'a mut HeaderMap<T>>: Unpin,

impl<'a, T> UnsafeUnpin for ValueIterMut<'a, T> where *mut Bucket<T>: UnsafeUnpin, *mut ExtraValue<T>: UnsafeUnpin, PhantomData<&'a mut HeaderMap<T>>: UnsafeUnpin,

Blanket Implementations

impl<I> IntoIterator for ValueIterMut<'a, T> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for ValueIterMut<'a, T> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for ValueIterMut<'a, T> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for ValueIterMut<'a, T> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for ValueIterMut<'a, T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for ValueIterMut<'a, T> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for ValueIterMut<'a, T> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for ValueIterMut<'a, T> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>