Trait FromIntoArrowWithUnit

Source
trait FromIntoArrowWithUnit {
    type ArrowType;
    type TimestampType;

    // Required methods
    fn from_arrow_with_unit(
        value: Self::ArrowType,
        time_unit: Self::TimestampType,
    ) -> Self;
    fn into_arrow_with_unit(
        self,
        time_unit: Self::TimestampType,
    ) -> Self::ArrowType;
}
Expand description

Converts RisingWave value from and into Arrow value. Specifically used for converting timestamp types according to timeunit.

Required Associated Types§

Source

type ArrowType

Source

type TimestampType

The timestamp type used to distinguish different time units, only utilized when the Arrow type is a timestamp.

Required Methods§

Source

fn from_arrow_with_unit( value: Self::ArrowType, time_unit: Self::TimestampType, ) -> Self

Source

fn into_arrow_with_unit(self, time_unit: Self::TimestampType) -> 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§