Expand description
Zero-sized types used to parameterize generic array implementations
Structs§
- Binary
View Type BinaryViewType
for string arrays- Boolean
Type - A boolean datatype
- Date32
Type - 32-bit date type: the elapsed time since UNIX epoch in days (32 bits).
- Date64
Type - 64-bit date type: the elapsed time since UNIX epoch in milliseconds (64 bits). Values must be divisible by
86_400_000
. SeeDataType::Date64
for more details. - Decimal128
Type - The decimal type for a Decimal128Array
- Decimal256
Type - The decimal type for a Decimal256Array
- Duration
Microsecond Type - Elapsed time type: microseconds.
- Duration
Millisecond Type - Elapsed time type: milliseconds.
- Duration
Nanosecond Type - Elapsed time type: nanoseconds.
- Duration
Second Type - Elapsed time type: seconds.
- Float16
Type - 16-bit floating point number type.
- Float32
Type - 32-bit floating point number type.
- Float64
Type - 64-bit floating point number type.
- Generic
Binary Type ByteArrayType
for binary arrays- Generic
String Type ByteArrayType
for string arrays- Int8
Type - A signed 8-bit integer type.
- Int16
Type - Signed 16-bit integer type.
- Int32
Type - Signed 32-bit integer type.
- Int64
Type - Signed 64-bit integer type.
- Interval
DayTime - Value of an IntervalDayTime array
- Interval
DayTime Type - “Calendar” interval type: days and milliseconds. See
IntervalDayTime
for more details. - Interval
Month DayNano - Value of an IntervalMonthDayNano array
- Interval
Month DayNano Type - “Calendar” interval type: months, days, and nanoseconds. See
IntervalMonthDayNano
for more details. - Interval
Year Month Type - 32-bit “calendar” interval type: the number of whole months.
- String
View Type ByteViewType
for string arrays- Time32
Millisecond Type - 32-bit time type: the elapsed time since midnight in milliseconds.
- Time32
Second Type - 32-bit time type: the elapsed time since midnight in seconds.
- Time64
Microsecond Type - 64-bit time type: the elapsed time since midnight in microseconds.
- Time64
Nanosecond Type - 64-bit time type: the elapsed time since midnight in nanoseconds.
- Timestamp
Microsecond Type - Timestamp microsecond type with an optional timezone.
- Timestamp
Millisecond Type - Timestamp millisecond type with an optional timezone.
- Timestamp
Nanosecond Type - Timestamp nanosecond type with an optional timezone.
- Timestamp
Second Type - Timestamp second type with an optional timezone.
- UInt8
Type - Unsigned 8-bit integer type.
- UInt16
Type - Unsigned 16-bit integer type.
- UInt32
Type - Unsigned 32-bit integer type.
- UInt64
Type - Unsigned 64-bit integer type.
Traits§
- Arrow
Dictionary KeyType - A subtype of primitive type that represents legal dictionary keys. See https://arrow.apache.org/docs/format/Columnar.html
- Arrow
Primitive Type - Trait for primitive values.
- Arrow
Temporal Type - A subtype of primitive type that represents temporal values.
- Arrow
Timestamp Type - A timestamp type allows us to create array builders that take a timestamp.
- Byte
Array Type - A trait over the variable-size byte array types
- Byte
View Type - A trait over the variable length bytes view array types
- Decimal
Type - A trait over the decimal types, used by
PrimitiveArray
to provide a generic implementation across the various decimal types - RunEnd
Index Type - A subtype of primitive type that is used as run-ends index
in
RunArray
. See https://arrow.apache.org/docs/format/Columnar.html
Functions§
- validate_
decimal_ precision_ and_ scale - Validate that
precision
andscale
are valid forT
Type Aliases§
- Binary
Type - An arrow binary array with i32 offsets
- Large
Binary Type - An arrow binary array with i64 offsets
- Large
Utf8 Type - An arrow utf8 array with i64 offsets
- Utf8
Type - An arrow utf8 array with i32 offsets