pub trait TryIntoArrow<ArrowType> {
// Required method
fn try_into_arrow(self) -> Result<ArrowType, ArrowError>;
}Available on (crate features
default-engine-native-tls or default-engine-rustls or arrow-conversion) and crate feature arrow-conversion only.Expand description
Convert a kernel type into an arrow type (automatically implemented for all types that
implement TryFromKernel)