Trait ParCollectInto

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

Trait representing collections which can be filled which has the concurrent safety to enable collecting results of a parallel computation.

Some common example collections are:

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.

Implementations on Foreign Types§

Source§

impl<O: Send + Sync> ParCollectInto<O> for Vec<O>

Implementors§