Skip to main content

ParCollectInto

Trait ParCollectInto 

Source
pub trait ParCollectInto<O>: ParCollectIntoCore<O> + UParCollectIntoCore<O> { }
Expand description

Collection types into which outputs of a parallel computations can be collected into.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O, C> ParCollectInto<O> for C
where C: ParCollectIntoCore<O> + UParCollectIntoCore<O>,