pub trait ArrowFloatType {
    type Native: Float + FromPrimitive;
    type ArrayType: FloatArray<Self>;

    const FLOAT_TYPE: FloatType;
}
Expand description

Trait for float types used in Arrow Array.

Required Associated Types§

source

type Native: Float + FromPrimitive

source

type ArrayType: FloatArray<Self>

Arrow Float Array Type.

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ArrowFloatType for Float16Type

source§

impl ArrowFloatType for Float32Type

source§

impl ArrowFloatType for Float64Type

Implementors§