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

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.

Implementors§