pub type Date32Array = PrimitiveArray<Date32Type>;Expand description
A PrimitiveArray of days since UNIX epoch stored as i32
This type is similar to the chrono::NaiveDate type and can hold
values such as 2018-11-13
Aliased Type§
pub struct Date32Array {
data_type: DataType,
values: ScalarBuffer<i32>,
nulls: Option<NullBuffer>,
}Fields§
§data_type: DataType§values: ScalarBuffer<i32>Values data
nulls: Option<NullBuffer>