pub trait ScalarType<T: ArrowNativeType> {
    fn scalar(r: Option<T>) -> ScalarValue;
}
Expand description

Trait used to map a NativeTime to a ScalarType.

Required Methods

returns a scalar from an optional T

Implementations on Foreign Types

Implementors