arrow_array::array

Type Alias Time64MicrosecondArray

Source
pub type Time64MicrosecondArray = PrimitiveArray<Time64MicrosecondType>;
Expand description

A PrimitiveArray of microseconds since midnight stored as i64

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

Aliased Type§

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

Fields§

§data_type: DataType§values: ScalarBuffer<i64>

Values data

§nulls: Option<NullBuffer>