Trait ParCollection

Source
pub trait ParCollection<C>: Into<C> + ParView { }
Expand description

Traits common to parallel collections.

C is the wrapped collection.

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<C, T: Into<C> + ParView> ParCollection<C> for T