Trait numcodecs::AnyRawData

source ·
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§

source

type U8: RawData<Elem = u8>

source

type U16: RawData<Elem = u16>

source

type U32: RawData<Elem = u32>

source

type U64: RawData<Elem = u64>

source

type I8: RawData<Elem = i8>

source

type I16: RawData<Elem = i16>

source

type I32: RawData<Elem = i32>

source

type I64: RawData<Elem = i64>

source

type F32: RawData<Elem = f32>

source

type F64: RawData<Elem = f64>

Implementors§