Trait numcodecs_sz3::Sz3Element

source ·
pub trait Sz3Element: Copy + SZ3Compressible {
    const DTYPE: Sz3DType;
}
Expand description

Array element types which can be compressed with SZ3.

Required Associated Constants§

source

const DTYPE: Sz3DType

The dtype representation of the type

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Sz3Element for f32

source§

const DTYPE: Sz3DType = Sz3DType::F32

source§

impl Sz3Element for f64

source§

const DTYPE: Sz3DType = Sz3DType::F64

source§

impl Sz3Element for i32

source§

const DTYPE: Sz3DType = Sz3DType::I32

source§

impl Sz3Element for i64

source§

const DTYPE: Sz3DType = Sz3DType::I64

Implementors§