pub trait FromParIterWithDtype<K> {
    // Required method
    fn from_par_iter_with_dtype<I>(iter: I, name: &str, dtype: DataType) -> Self
       where I: IntoParallelIterator<Item = K>,
             Self: Sized;
}

Required Methods§

source

fn from_par_iter_with_dtype<I>(iter: I, name: &str, dtype: DataType) -> Self
where I: IntoParallelIterator<Item = K>, Self: Sized,

Implementations on Foreign Types§

source§

impl<C, T, E> FromParIterWithDtype<Result<T, E>> for Result<C, E>
where C: FromParIterWithDtype<T>, T: Send, E: Send,

source§

fn from_par_iter_with_dtype<I>(par_iter: I, name: &str, dtype: DataType) -> Self
where I: IntoParallelIterator<Item = Result<T, E>>,

Implementors§