pub trait AnyRawData {
type U8: RawData<Elem = u8>;
type U16: RawData<Elem = u16>;
type U32: RawData<Elem = u32>;
type U64: RawData<Elem = u64>;
type I8: RawData<Elem = i8>;
type I16: RawData<Elem = i16>;
type I32: RawData<Elem = i32>;
type I64: RawData<Elem = i64>;
type F32: RawData<Elem = f32>;
type F64: RawData<Elem = f64>;
}Expand description
Array-representation support for all dtypes included in AnyArrayBase.
Required Associated Types§
type U8: RawData<Elem = u8>
type U16: RawData<Elem = u16>
type U32: RawData<Elem = u32>
type U64: RawData<Elem = u64>
type I8: RawData<Elem = i8>
type I16: RawData<Elem = i16>
type I32: RawData<Elem = i32>
type I64: RawData<Elem = i64>
type F32: RawData<Elem = f32>
type F64: RawData<Elem = f64>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".