Struct ExtractIf
struct ExtractIf<'a, T, F> { ... }
An extracting iterator for IndexSet.
This struct is created by [IndexSet::extract_if()].
See its documentation for more.
Implementations
impl<'a, T, F> Freeze for ExtractIf<'a, T, F>
impl<'a, T, F> RefUnwindSafe for ExtractIf<'a, T, F>
impl<'a, T, F> Send for ExtractIf<'a, T, F>
impl<'a, T, F> Sync for ExtractIf<'a, T, F>
impl<'a, T, F> Unpin for ExtractIf<'a, T, F>
impl<'a, T, F> UnsafeUnpin for ExtractIf<'a, T, F>
impl<'a, T, F> UnwindSafe for ExtractIf<'a, T, F>
impl<I> IntoIterator for ExtractIf<'a, T, F>
fn into_iter(self: Self) -> I
impl<T> Any for ExtractIf<'a, T, F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ExtractIf<'a, T, F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ExtractIf<'a, T, F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ExtractIf<'a, T, F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, F> Debug for ExtractIf<'_, T, F>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T, F> FusedIterator for ExtractIf<'_, T, F>
impl<T, F> Iterator for ExtractIf<'_, T, F>
fn next(self: &mut Self) -> Option<<Self as >::Item>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<T, U> Into for ExtractIf<'a, T, F>
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 ExtractIf<'a, T, F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ExtractIf<'a, T, F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>