Trait vortex::arrow::FromArrowType

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

Required Methods§

source

fn from_arrow(value: T) -> Self

Object Safety§

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§