logo
pub unsafe trait DataOwned: Data {
    type MaybeUninit: DataOwned<Elem = MaybeUninit<Self::Elem>> + RawDataSubst<Self::Elem, Output = Self>;
}
Expand description

Array representation trait.

A representation that is a unique or shared owner of its data.

Internal trait, see Data.

Required Associated Types

Corresponding owned data with MaybeUninit elements

Implementors