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§
sourcetype ConPinnedVec: ConcurrentPinnedVec<T, P = Self>
type ConPinnedVec: ConcurrentPinnedVec<T, P = Self>
Type of the concurrent pinned vector wrapper.
Required Methods§
sourcefn into_concurrent(self) -> Self::ConPinnedVec
fn into_concurrent(self) -> Self::ConPinnedVec
Converts the pinned vector into its concurrent wrapper.
Object Safety§
This trait is not object safe.