Enum parquet::record::Field

source ·
pub enum Field {
Show 22 variants Null, Bool(bool), Byte(i8), Short(i16), Int(i32), Long(i64), UByte(u8), UShort(u16), UInt(u32), ULong(u64), Float16(f16), Float(f32), Double(f64), Decimal(Decimal), Str(String), Bytes(ByteArray), Date(i32), TimestampMillis(i64), TimestampMicros(i64), Group(Row), ListInternal(List), MapInternal(Map),
}
Expand description

API to represent a single field in a Row.

Variants§

§

Null

Null value.

§

Bool(bool)

Boolean value (true, false).

§

Byte(i8)

Signed integer INT_8.

§

Short(i16)

Signed integer INT_16.

§

Int(i32)

Signed integer INT_32.

§

Long(i64)

Signed integer INT_64.

§

UByte(u8)

§

UShort(u16)

§

UInt(u32)

§

ULong(u64)

§

Float16(f16)

IEEE 16-bit floating point value.

§

Float(f32)

IEEE 32-bit floating point value.

§

Double(f64)

IEEE 64-bit floating point value.

§

Decimal(Decimal)

Decimal value.

§

Str(String)

UTF-8 encoded character string.

§

Bytes(ByteArray)

General binary value.

§

Date(i32)

Date without a time of day, stores the number of days from the Unix epoch, 1 January 1970.

§

TimestampMillis(i64)

Milliseconds from the Unix epoch, 1 January 1970.

§

TimestampMicros(i64)

Microseconds from the Unix epoch, 1 January 1970.

§

Group(Row)

Struct, child elements are tuples of field-value pairs.

§

ListInternal(List)

List of elements.

§

MapInternal(Map)

List of key-value pairs.

Implementations§

source§

impl Field

source

pub fn is_primitive(&self) -> bool

Determines if this Row represents a primitive value.

source

pub fn convert_bool(_descr: &ColumnDescPtr, value: bool) -> Self

Converts Parquet BOOLEAN type with logical type into bool value.

source

pub fn convert_int32(descr: &ColumnDescPtr, value: i32) -> Self

Converts Parquet INT32 type with converted type into i32 value.

source

pub fn convert_int64(descr: &ColumnDescPtr, value: i64) -> Self

Converts Parquet INT64 type with converted type into i64 value.

source

pub fn convert_int96(_descr: &ColumnDescPtr, value: Int96) -> Self

Converts Parquet INT96 (nanosecond timestamps) type and logical type into Timestamp value.

source

pub fn convert_float(_descr: &ColumnDescPtr, value: f32) -> Self

Converts Parquet FLOAT type with logical type into f32 value.

source

pub fn convert_double(_descr: &ColumnDescPtr, value: f64) -> Self

Converts Parquet DOUBLE type with converted type into f64 value.

source

pub fn convert_byte_array( descr: &ColumnDescPtr, value: ByteArray ) -> Result<Self>

Converts Parquet BYTE_ARRAY type with converted type into a UTF8 string, decimal, float16, or an array of bytes.

source

pub fn to_json_value(&self) -> Value

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Field

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Field

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Field

source§

fn eq(&self, other: &Field) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl !Freeze for Field

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,