Trait orx_fixed_vec::IntoConcurrentPinnedVec

source ·
pub trait IntoConcurrentPinnedVec<T>: PinnedVec<T> {
    type ConPinnedVec: ConcurrentPinnedVec<T, P = Self>;

    // Required method
    fn into_concurrent(self) -> Self::ConPinnedVec;
}
Expand description

A pinned vector which can be wrapped into a concurrent pinned vector.

Required Associated Types§

source

type ConPinnedVec: ConcurrentPinnedVec<T, P = Self>

Type of the concurrent pinned vector wrapper.

Required Methods§

source

fn into_concurrent(self) -> Self::ConPinnedVec

Converts the pinned vector into its concurrent wrapper.

Object Safety§

This trait is not object safe.

Implementors§