trait IntoParIterIfRayon {
    type Output;

    // Required method
    fn into_par_iter_if_rayon(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<T: Send> IntoParIterIfRayon for Vec<T>

§

type Output = IntoIter<T>

source§

fn into_par_iter_if_rayon(self) -> Self::Output

Implementors§