Enum DataType

Source
pub enum DataType {
Show 19 variants Boolean { column_index: usize, }, Byte { column_index: usize, }, Short { column_index: usize, }, Int { column_index: usize, }, Long { column_index: usize, }, Float { column_index: usize, }, Double { column_index: usize, }, String { column_index: usize, }, Varchar { column_index: usize, max_length: u32, }, Char { column_index: usize, max_length: u32, }, Binary { column_index: usize, }, Decimal { column_index: usize, precision: u32, scale: u32, }, Timestamp { column_index: usize, }, TimestampWithLocalTimezone { column_index: usize, }, Date { column_index: usize, }, Struct { column_index: usize, children: Vec<NamedColumn>, }, List { column_index: usize, child: Box<DataType>, }, Map { column_index: usize, key: Box<DataType>, value: Box<DataType>, }, Union { column_index: usize, variants: Vec<DataType>, },
}
Expand description

Represents the exact data types supported by ORC.

Each variant holds the column index in order to associate the type with the specific column data present in the stripes.

Variants§

§

Boolean

1 bit packed data.

Fields

§column_index: usize
§

Byte

8 bit integer, also called TinyInt.

Fields

§column_index: usize
§

Short

16 bit integer, also called SmallInt.

Fields

§column_index: usize
§

Int

32 bit integer.

Fields

§column_index: usize
§

Long

64 bit integer, also called BigInt.

Fields

§column_index: usize
§

Float

32 bit floating-point number.

Fields

§column_index: usize
§

Double

64 bit floating-point number.

Fields

§column_index: usize
§

String

UTF-8 encoded strings.

Fields

§column_index: usize
§

Varchar

UTF-8 encoded strings, with an upper length limit on values.

Fields

§column_index: usize
§max_length: u32
§

Char

UTF-8 encoded strings, with an upper length limit on values.

Fields

§column_index: usize
§max_length: u32
§

Binary

Arbitrary byte array values.

Fields

§column_index: usize
§

Decimal

Decimal numbers with a fixed precision and scale.

Fields

§column_index: usize
§precision: u32
§scale: u32
§

Timestamp

Represents specific date and time, down to the nanosecond, as offset since 1st January 2015, with no timezone.

The date and time represented by values of this column does not change based on the reader’s timezone.

Fields

§column_index: usize
§

TimestampWithLocalTimezone

Represents specific date and time, down to the nanosecond, as offset since 1st January 2015, with timezone.

The date and time represented by values of this column changes based on the reader’s timezone (is a fixed instant in time).

Fields

§column_index: usize
§

Date

Represents specific date (without time) as days since the UNIX epoch (1st January 1970 UTC).

Fields

§column_index: usize
§

Struct

Compound type with named child subtypes, representing a structured collection of children types.

Fields

§column_index: usize
§children: Vec<NamedColumn>
§

List

Compound type where each value in the column is a list of values of another type, specified by the child type.

Fields

§column_index: usize
§child: Box<DataType>
§

Map

Compound type with two children subtypes, key and value, representing key-value pairs for column values.

Fields

§column_index: usize
§value: Box<DataType>
§

Union

Compound type which can represent multiple types of data within the same column.

It’s variants represent which types it can be (where each value in the column can only be one of these types).

Fields

§column_index: usize
§variants: Vec<DataType>

Implementations§

Source§

impl DataType

Source

pub fn column_index(&self) -> usize

Retrieve the column index of this data type, used for getting the specific column streams/statistics in the file.

Source

pub fn children_indices(&self) -> Vec<usize>

All children column indices.

Source

pub fn all_indices(&self) -> Vec<usize>

Includes self index and all children column indices.

Source

pub fn to_arrow_data_type(&self) -> ArrowDataType

Trait Implementations§

Source§

impl Clone for DataType

Source§

fn clone(&self) -> DataType

Returns a duplicate 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 DataType

Source§

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

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

impl Display for DataType

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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§

fn to_string(&self) -> String

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

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Source§

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

Source§

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>,

Source§

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> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSend for T
where T: Send,