pub trait ArrayDType: SealedArrayDType {
type RawData<T: AnyRawData>: RawData<Elem = Self>;
const DTYPE: AnyArrayDType;
}Expand description
Types which are included in AnyArrayDType
Required Associated Constants§
Sourceconst DTYPE: AnyArrayDType
const DTYPE: AnyArrayDType
AnyArrayDType representation of this type
Required Associated Types§
Sourcetype RawData<T: AnyRawData>: RawData<Elem = Self>
type RawData<T: AnyRawData>: RawData<Elem = Self>
Representation for an ArrayBase containing this type
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".