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.