pub trait PolarsNumericType: 'static + for<'a> PolarsDataType<OwnedPhysical = Self::Native, Physical<'a> = Self::Native, ZeroablePhysical<'a> = Self::Native, Array = PrimitiveArray<Self::Native>, IsNested = FalseT, HasViews = FalseT, IsStruct = FalseT, IsObject = FalseT> {
type Native: NumericNative;
}
Required Associated Types§
type Native: NumericNative
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
Source§impl PolarsNumericType for Float32Type
impl PolarsNumericType for Float32Type
Source§impl PolarsNumericType for Float64Type
impl PolarsNumericType for Float64Type
Source§impl PolarsNumericType for Int128Type
Available on crate feature dtype-decimal
only.
impl PolarsNumericType for Int128Type
Available on crate feature
dtype-decimal
only.