Trait par_iter_sync::IntoParallelIteratorAsync[][src]

pub trait IntoParallelIteratorAsync<R, T, TL, F> where
    F: Send + Clone + 'static + Fn(T) -> Result<R, ()>,
    T: Send + 'static,
    TL: Send + IntoIterator<Item = T> + 'static,
    R: Send
{ fn into_par_iter_async(self, func: F) -> ParIterAsync<R>
Notable traits for ParIterAsync<R>
impl<R> Iterator for ParIterAsync<R> type Item = R;
; }

Required methods

An asynchronous equivalent of into_par_iter_sync

Implementors