Trait ParCollectInto

Source
pub trait ParCollectInto<O>: ParCollectIntoCore<O>
where O: Send + Sync,
{ }
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", so this trait is not object safe.

Implementors§

Source§

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