Module data_type

Source
Expand description

Data types that connect Parquet physical types with their Rust-specific representations.

Modulesยง

private ๐Ÿ”’

Macrosยง

ensure_phys_ty ๐Ÿ”’
Macro to reduce repetition in making type assertions on the physical type against T
gen_as_bytes ๐Ÿ”’
make_type ๐Ÿ”’
unimplemented_slice_as_bytes ๐Ÿ”’

Structsยง

BoolType
Parquet physical type: BoolType
ByteArray
Rust representation for BYTE_ARRAY and FIXED_LEN_BYTE_ARRAY Parquet physical types. Value is backed by a byte buffer.
ByteArrayType
Parquet physical type: ByteArrayType
DoubleType
Parquet physical type: DoubleType
FixedLenByteArray
Wrapper type for performance reasons, this represents FIXED_LEN_BYTE_ARRAY but in all other considerations behaves the same as ByteArray
FixedLenByteArrayType
Parquet physical type: FixedLenByteArrayType
FloatType
Parquet physical type: FloatType
Int96
Rust representation for logical type INT96, value is backed by an array of u32. The type only takes 12 bytes, without extra padding.
Int32Type
Parquet physical type: Int32Type
Int64Type
Parquet physical type: Int64Type
Int96Type
Parquet physical type: Int96Type

Enumsยง

Decimal
Rust representation for Decimal values.

Constantsยง

JULIAN_DAY_OF_EPOCH ๐Ÿ”’
MICROSECONDS ๐Ÿ”’
Number of microseconds in a second
MICROSECONDS_IN_DAY ๐Ÿ”’
Number of microseconds in a day
MILLISECONDS ๐Ÿ”’
Number of milliseconds in a second
MILLISECONDS_IN_DAY ๐Ÿ”’
Number of milliseconds in a day
NANOSECONDS ๐Ÿ”’
Number of nanoseconds in a second
NANOSECONDS_IN_DAY ๐Ÿ”’
Number of nanoseconds in a day
SECONDS_IN_DAY ๐Ÿ”’
Number of seconds in a day

Traitsยง

AsBytes
Converts an instance of data type to a slice of bytes as u8.
DataType
Contains the Parquet physical type information as well as the Rust primitive type presentation.
SliceAsBytes
Converts an slice of a data type to a slice of bytes.
SliceAsBytesDataTypeDeprecated