Skip to main content

IntoArrowArray

Trait IntoArrowArray 

Source
pub trait IntoArrowArray {
    // Required methods
    fn into_arrow_preferred(self) -> VortexResult<ArrowArrayRef>;
    fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrowArrayRef>;
}
๐Ÿ‘ŽDeprecated:

Use execute_arrow(None, ctx) or execute_arrow(Some(dt), ctx) instead

Required Methodsยง

Source

fn into_arrow_preferred(self) -> VortexResult<ArrowArrayRef>

๐Ÿ‘ŽDeprecated:

Use execute_arrow(None, ctx) instead

Source

fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrowArrayRef>

๐Ÿ‘ŽDeprecated:

Use execute_arrow(Some(data_type), ctx) instead

Implementorsยง