ArrayReader

Trait ArrayReader 

Source
pub trait ArrayReader: Iterator<Item = Result<ArrayRef, ArrowError>> {
    // Required method
    fn field(&self) -> FieldRef;
}
Expand description

Trait for types that can read ArrayRef’s.

To create from an iterator, see ArrayIterator.

Required Methods§

Source

fn field(&self) -> FieldRef

Returns the field of this ArrayReader.

Implementation of this trait should guarantee that all ArrayRef’s returned by this reader should have the same field as returned from this method.

Implementations on Foreign Types§

Source§

impl<R: ArrayReader + ?Sized> ArrayReader for Box<R>

Source§

fn field(&self) -> FieldRef

Implementors§