Struct Pairs
struct Pairs<'a, T: 'a, P: 'a> { ... }
An iterator over borrowed pairs of type Pair<&T, &P>.
Refer to the module documentation for details about punctuated sequences.
Implementations
impl<'a, T, P> Clone for Pairs<'a, T, P>
fn clone(self: &Self) -> Self
impl<'a, T, P> DoubleEndedIterator for Pairs<'a, T, P>
fn next_back(self: &mut Self) -> Option<<Self as >::Item>
impl<'a, T, P> ExactSizeIterator for Pairs<'a, T, P>
fn len(self: &Self) -> usize
impl<'a, T, P> Freeze for Pairs<'a, T, P>
impl<'a, T, P> Iterator for Pairs<'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 Pairs<'a, T, P>
impl<'a, T, P> Send for Pairs<'a, T, P>
impl<'a, T, P> Sync for Pairs<'a, T, P>
impl<'a, T, P> Unpin for Pairs<'a, T, P>
impl<'a, T, P> UnwindSafe for Pairs<'a, T, P>
impl<I> IntoIterator for Pairs<'a, T, P>
fn into_iter(self: Self) -> I
impl<T> Any for Pairs<'a, T, P>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Pairs<'a, T, P>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Pairs<'a, T, P>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Pairs<'a, T, P>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Pairs<'a, T, P>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Pairs<'a, T, P>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Pairs<'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 Pairs<'a, T, P>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Pairs<'a, T, P>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>