risingwave_common::array::arrow::arrow_52::arrow_impl

Trait FromIntoArrow

source
trait FromIntoArrow {
    type ArrowType;

    // Required methods
    fn from_arrow(value: Self::ArrowType) -> Self;
    fn into_arrow(self) -> Self::ArrowType;
}
Expand description

Converts RisingWave value from and into Arrow value.

Required Associated Types§

source

type ArrowType

The corresponding element type in the Arrow array.

Required Methods§

source

fn from_arrow(value: Self::ArrowType) -> Self

source

fn into_arrow(self) -> Self::ArrowType

Object Safety§

This trait is not object safe.

Implementors§