Skip to main content

TryIntoArrow

Trait TryIntoArrow 

Source
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)

Required Methods§

Source

fn try_into_arrow(self) -> Result<ArrowType, ArrowError>

Implementors§

Source§

impl<KernelType, ArrowType> TryIntoArrow<ArrowType> for KernelType
where ArrowType: TryFromKernel<KernelType>,