pub trait FloatToArrayType: Float + Bounded + Sum + AddAssign<Self> + AsPrimitive<f64> + AsPrimitive<f32> + DivAssign + Send + Sync + Copy {
    type ArrowType: ArrowFloatType<Native = Self>;
}

Required Associated Types§

source

type ArrowType: ArrowFloatType<Native = Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FloatToArrayType for f32

source§

impl FloatToArrayType for f64

source§

impl FloatToArrayType for bf16

source§

impl FloatToArrayType for f16

Implementors§