vortex_array::arrow

Trait FromArrowType

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

Required Methods§

Source

fn from_arrow(value: T) -> Self

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.

Implementations on Foreign Types§

Source§

impl FromArrowType<&Field> for DType

Source§

fn from_arrow(field: &Field) -> Self

Source§

impl FromArrowType<Arc<Schema>> for DType

Source§

fn from_arrow(value: SchemaRef) -> Self

Implementors§