arrow_array::array

Type Alias Time64NanosecondArray

Source
pub type Time64NanosecondArray = PrimitiveArray<Time64NanosecondType>;
Expand description

A PrimitiveArray of nanoseconds since midnight stored as i64

This type is similar to the chrono::NaiveTime type and can hold values such as 00:02:00.123456789

Aliased Type§

struct Time64NanosecondArray {
    data_type: DataType,
    values: ScalarBuffer<i64>,
    nulls: Option<NullBuffer>,
}

Fields§

§data_type: DataType§values: ScalarBuffer<i64>

Values data

§nulls: Option<NullBuffer>