Struct PairsMut
struct PairsMut<'a, T: 'a, P: 'a> { ... }
An iterator over mutably borrowed pairs of type Pair<&mut T, &mut P>.
Refer to the module documentation for details about punctuated sequences.
Implementations
impl<'a, T, P> DoubleEndedIterator for PairsMut<'a, T, P>
fn next_back(self: &mut Self) -> Option<<Self as >::Item>
impl<'a, T, P> ExactSizeIterator for PairsMut<'a, T, P>
fn len(self: &Self) -> usize
impl<'a, T, P> Freeze for PairsMut<'a, T, P>
impl<'a, T, P> Iterator for PairsMut<'a, T, P>
fn next(self: &mut Self) -> Option<<Self as >::Item>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<'a, T, P> RefUnwindSafe for PairsMut<'a, T, P>
impl<'a, T, P> Send for PairsMut<'a, T, P>
impl<'a, T, P> Sync for PairsMut<'a, T, P>
impl<'a, T, P> Unpin for PairsMut<'a, T, P>
impl<'a, T, P> UnwindSafe for PairsMut<'a, T, P>
impl<I> IntoIterator for PairsMut<'a, T, P>
fn into_iter(self: Self) -> I
impl<T> Any for PairsMut<'a, T, P>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for PairsMut<'a, T, P>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for PairsMut<'a, T, P>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for PairsMut<'a, T, P>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for PairsMut<'a, T, P>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for PairsMut<'a, T, P>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for PairsMut<'a, T, P>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>