Struct IntoPairs

struct IntoPairs<T, P> { ... }

An iterator over owned pairs of type Pair<T, P>.

Refer to the module documentation for details about punctuated sequences.

Implementations

impl<I> IntoIterator for IntoPairs<T, P>

fn into_iter(self: Self) -> I

impl<T> Any for IntoPairs<T, P>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for IntoPairs<T, P>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for IntoPairs<T, P>

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

impl<T> CloneToUninit for IntoPairs<T, P>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for IntoPairs<T, P>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for IntoPairs<T, P>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, P> Clone for IntoPairs<T, P>

fn clone(self: &Self) -> Self

impl<T, P> DoubleEndedIterator for IntoPairs<T, P>

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

impl<T, P> ExactSizeIterator for IntoPairs<T, P>

fn len(self: &Self) -> usize

impl<T, P> Freeze for IntoPairs<T, P>

impl<T, P> Iterator for IntoPairs<T, P>

fn next(self: &mut Self) -> Option<<Self as >::Item>
fn size_hint(self: &Self) -> (usize, Option<usize>)

impl<T, P> RefUnwindSafe for IntoPairs<T, P>

impl<T, P> Send for IntoPairs<T, P>

impl<T, P> Sync for IntoPairs<T, P>

impl<T, P> Unpin for IntoPairs<T, P>

impl<T, P> UnwindSafe for IntoPairs<T, P>

impl<T, U> Into for IntoPairs<T, P>

fn into(self: 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 for IntoPairs<T, P>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for IntoPairs<T, P>

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