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§
Required Methods§
fn from_arrow(value: Self::ArrowType) -> Self
fn into_arrow(self) -> Self::ArrowType
Object Safety§
This trait is not object safe.