Trait orx_parallel::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:

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

Implementors§