FromArrowType

Trait FromArrowType 

Source
pub trait FromArrowType<T>: Sized {
    // Required method
    fn from_arrow(value: T) -> Self;
}
Expand description

Trait for converting Arrow types to Vortex types.

Required Methods§

Source

fn from_arrow(value: T) -> Self

Convert the Arrow type to a Vortex type.

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§