FromArrowArray

Trait FromArrowArray 

Source
pub trait FromArrowArray<A> {
    // Required method
    fn from_arrow(array: A, nullable: bool) -> Self;
}

Required Methods§

Source

fn from_arrow(array: A, nullable: bool) -> 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 FromArrowArray<&BooleanArray> for Arc<dyn Array>

Source§

fn from_arrow(value: &BooleanArray, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<&FixedSizeListArray> for Arc<dyn Array>

Source§

fn from_arrow(array: &FixedSizeListArray, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<&NullArray> for Arc<dyn Array>

Source§

fn from_arrow(value: &NullArray, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Date32Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Date32Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Date64Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Date64Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Decimal32Type>> for Arc<dyn Array>

Source§

fn from_arrow( array: &PrimitiveArray<Decimal32Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Decimal64Type>> for Arc<dyn Array>

Source§

fn from_arrow( array: &PrimitiveArray<Decimal64Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Decimal128Type>> for Arc<dyn Array>

Source§

fn from_arrow( array: &PrimitiveArray<Decimal128Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Decimal256Type>> for Arc<dyn Array>

Source§

fn from_arrow( array: &PrimitiveArray<Decimal256Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Float16Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Float16Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Float32Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Float32Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Float64Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Float64Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Int8Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Int8Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Int16Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Int16Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Int32Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Int32Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Int64Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Int64Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Time32MillisecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Time32SecondType>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<Time32SecondType>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Time64MicrosecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<Time64NanosecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<TimestampMicrosecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<TimestampMillisecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<TimestampNanosecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<TimestampSecondType>> for Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<UInt8Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<UInt8Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<UInt16Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<UInt16Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<UInt32Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<UInt32Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&PrimitiveArray<UInt64Type>> for Arc<dyn Array>

Source§

fn from_arrow( value: &PrimitiveArray<UInt64Type>, nullable: bool, ) -> Arc<dyn Array>

Source§

impl FromArrowArray<&StructArray> for Arc<dyn Array>

Source§

fn from_arrow(value: &StructArray, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<&RecordBatch> for Arc<dyn Array>

Source§

fn from_arrow(array: &RecordBatch, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<&dyn Array> for Arc<dyn Array>

Source§

fn from_arrow(array: &dyn Array, nullable: bool) -> Arc<dyn Array>

Source§

impl FromArrowArray<RecordBatch> for Arc<dyn Array>

Source§

fn from_arrow(array: RecordBatch, nullable: bool) -> Arc<dyn Array>

Source§

impl<O> FromArrowArray<&GenericListArray<O>> for Arc<dyn Array>

Source§

fn from_arrow(value: &GenericListArray<O>, nullable: bool) -> Arc<dyn Array>

Source§

impl<O> FromArrowArray<&GenericListViewArray<O>> for Arc<dyn Array>

Source§

fn from_arrow(array: &GenericListViewArray<O>, nullable: bool) -> Arc<dyn Array>

Source§

impl<T> FromArrowArray<&GenericByteArray<T>> for Arc<dyn Array>

Source§

fn from_arrow(value: &GenericByteArray<T>, nullable: bool) -> Arc<dyn Array>

Source§

impl<T> FromArrowArray<&GenericByteViewArray<T>> for Arc<dyn Array>
where T: ByteViewType,

Source§

fn from_arrow(value: &GenericByteViewArray<T>, nullable: bool) -> Arc<dyn Array>

Implementors§