pub trait FromArrowRobj: Sized {
    // Required method
    fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>;
}
Expand description

Creates arrow-rs Structs from an Robj

Required Methods§

source

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

Implementations on Foreign Types§

source§

impl FromArrowRobj for DataType

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

source§

impl FromArrowRobj for ArrayData

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

source§

impl FromArrowRobj for Field

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

source§

impl FromArrowRobj for ArrowArrayStreamReader

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

source§

impl FromArrowRobj for Schema

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

source§

impl FromArrowRobj for RecordBatch

If there are more than one RecordBatches in the stream, do not use this Use ArrowStreamReader instead

source§

fn from_arrow_robj(robj: &Robj) -> Result<Self, ErrArrowRobj>

Implementors§