pub trait IntoParAccess<Index: Copy = usize> {
type Access: BoundedParAccess<Index>;
// Required method
fn into_par_access(self) -> Self::Access;
}
Expand description
A type that can be converted into a parallel access object.
Required Associated Types§
Sourcetype Access: BoundedParAccess<Index>
type Access: BoundedParAccess<Index>
The access type obtained through this trait.
Required Methods§
Sourcefn into_par_access(self) -> Self::Access
fn into_par_access(self) -> Self::Access
Obtain parallel access to this collection.