pub trait TryIntoKernel<KernelType> {
// Required method
fn try_into_kernel(self) -> Result<KernelType, ArrowError>;
}Expand description
Convert an arrow type into a kernel type (automatically implemented for all types that
implement TryFromArrow)