Struct Splice

struct Splice<'a, I, T, S> { ... }
where
    I: Iterator<Item = T>,
    T: Hash + Eq,
    S: BuildHasher

A splicing iterator for IndexSet.

This struct is created by [IndexSet::splice()]. See its documentation for more.

Implementations

impl<'a, I, T, S> Freeze for Splice<'a, I, T, S>

impl<'a, I, T, S> RefUnwindSafe for Splice<'a, I, T, S>

impl<'a, I, T, S> Send for Splice<'a, I, T, S>

impl<'a, I, T, S> Sync for Splice<'a, I, T, S>

impl<'a, I, T, S> Unpin for Splice<'a, I, T, S>

impl<'a, I, T, S> UnsafeUnpin for Splice<'a, I, T, S>

impl<'a, I, T, S> UnwindSafe for Splice<'a, I, T, S>

impl<I> IntoIterator for Splice<'a, I, T, S>

fn into_iter(self: Self) -> I

impl<I, T, S> Debug for Splice<'_, I, T, S>

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

impl<I, T, S> DoubleEndedIterator for Splice<'_, I, T, S>

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

impl<I, T, S> ExactSizeIterator for Splice<'_, I, T, S>

fn len(self: &Self) -> usize

impl<I, T, S> FusedIterator for Splice<'_, I, T, S>

impl<I, T, S> Iterator for Splice<'_, I, T, S>

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

impl<T> Any for Splice<'a, I, T, S>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Splice<'a, I, T, S>

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

impl<T> BorrowMut for Splice<'a, I, T, S>

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

impl<T> From for Splice<'a, I, T, S>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Splice<'a, I, T, S>

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 Splice<'a, I, T, S>

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

impl<T, U> TryInto for Splice<'a, I, T, S>

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