Struct FlatMapIter
struct FlatMapIter<I: ParallelIterator, F> { ... }
FlatMapIter maps each element to a serial iterator, then flattens these iterators together.
This struct is created by the flat_map_iter() method on ParallelIterator
Implementations
impl<I, F> Freeze for FlatMapIter<I, F>
impl<I, F> RefUnwindSafe for FlatMapIter<I, F>
impl<I, F> Send for FlatMapIter<I, F>
impl<I, F> Sync for FlatMapIter<I, F>
impl<I, F> Unpin for FlatMapIter<I, F>
impl<I, F> UnsafeUnpin for FlatMapIter<I, F>
impl<I, F> UnwindSafe for FlatMapIter<I, F>
impl<I, F, SI> ParallelIterator for FlatMapIter<I, F>
fn drive_unindexed<C>(self: Self, consumer: C) -> <C as >::Result where C: UnindexedConsumer<<Self as >::Item>
impl<I: $crate::clone::Clone + ParallelIterator, F: $crate::clone::Clone> Clone for FlatMapIter<I, F>
fn clone(self: &Self) -> FlatMapIter<I, F>
impl<I: ParallelIterator + Debug, F> Debug for FlatMapIter<I, F>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T> Any for FlatMapIter<I, F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FlatMapIter<I, F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FlatMapIter<I, F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for FlatMapIter<I, F>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for FlatMapIter<I, F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoParallelIterator for FlatMapIter<I, F>
fn into_par_iter(self: Self) -> T
impl<T> Pointable for FlatMapIter<I, F>
unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T> ToOwned for FlatMapIter<I, F>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for FlatMapIter<I, 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 FlatMapIter<I, F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FlatMapIter<I, F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>