pub struct ConvertedType(pub i32);format module is no longer maintained, and will be removed in 59.0.0Expand description
DEPRECATED: Common types used by frameworks(e.g. hive, pig) using parquet. ConvertedType is superseded by LogicalType. This enum should not be extended.
See LogicalTypes.md for conversion between ConvertedType and LogicalType.
Tuple Fields§
§0: i32format module is no longer maintained, and will be removed in 59.0.0Implementations§
Source§impl ConvertedType
impl ConvertedType
Sourcepub const UTF8: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const UTF8: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0a BYTE_ARRAY actually contains UTF8 encoded chars
Sourcepub const MAP: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const MAP: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0a map is converted as an optional field containing a repeated key/value pair
Sourcepub const MAP_KEY_VALUE: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const MAP_KEY_VALUE: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0a key/value pair is converted into a group of two fields
Sourcepub const LIST: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const LIST: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0a list is converted into an optional field containing a repeated field for its values
Sourcepub const ENUM: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const ENUM: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0an enum is converted into a BYTE_ARRAY field
Sourcepub const DECIMAL: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const DECIMAL: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A decimal value.
This may be used to annotate BYTE_ARRAY or FIXED_LEN_BYTE_ARRAY primitive types. The underlying byte array stores the unscaled value encoded as two’s complement using big-endian byte order (the most significant byte is the zeroth element). The value of the decimal is the value * 10^{-scale}.
This must be accompanied by a (maximum) precision and a scale in the SchemaElement. The precision specifies the number of digits in the decimal and the scale stores the location of the decimal point. For example 1.23 would have precision 3 (3 total digits) and scale 2 (the decimal point is 2 digits over).
Sourcepub const DATE: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const DATE: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A Date
Stored as days since Unix epoch, encoded as the INT32 physical type.
Sourcepub const TIME_MILLIS: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const TIME_MILLIS: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A time
The total number of milliseconds since midnight. The value is stored as an INT32 physical type.
Sourcepub const TIME_MICROS: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const TIME_MICROS: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A time.
The total number of microseconds since midnight. The value is stored as an INT64 physical type.
Sourcepub const TIMESTAMP_MILLIS: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const TIMESTAMP_MILLIS: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A date/time combination
Date and time recorded as milliseconds since the Unix epoch. Recorded as a physical type of INT64.
Sourcepub const TIMESTAMP_MICROS: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const TIMESTAMP_MICROS: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A date/time combination
Date and time recorded as microseconds since the Unix epoch. The value is stored as an INT64 physical type.
Sourcepub const UINT_8: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const UINT_8: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0An unsigned integer value.
The number describes the maximum number of meaningful data bits in the stored value. 8, 16 and 32 bit values are stored using the INT32 physical type. 64 bit values are stored using the INT64 physical type.
pub const UINT_16: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0pub const UINT_32: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0pub const UINT_64: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0Sourcepub const INT_8: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const INT_8: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0A signed integer value.
The number describes the maximum number of meaningful data bits in the stored value. 8, 16 and 32 bit values are stored using the INT32 physical type. 64 bit values are stored using the INT64 physical type.
pub const INT_16: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0pub const INT_32: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0pub const INT_64: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0Sourcepub const JSON: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const JSON: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0An embedded JSON document
A JSON document embedded within a single UTF8 column.
Sourcepub const BSON: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const BSON: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0An embedded BSON document
A BSON document embedded within a single BYTE_ARRAY column.
Sourcepub const INTERVAL: ConvertedType
👎Deprecated since 57.0.0: The format module is no longer maintained, and will be removed in 59.0.0
pub const INTERVAL: ConvertedType
format module is no longer maintained, and will be removed in 59.0.0An interval of time
This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12 This data is composed of three separate little endian unsigned integers. Each stores a component of a duration of time. The first integer identifies the number of months associated with the duration, the second identifies the number of days associated with the duration and the third identifies the number of milliseconds associated with the provided duration. This duration of time is independent of any particular timezone or date.
pub const ENUM_VALUES: &'static [Self]
format module is no longer maintained, and will be removed in 59.0.0Trait Implementations§
Source§impl Clone for ConvertedType
impl Clone for ConvertedType
Source§fn clone(&self) -> ConvertedType
fn clone(&self) -> ConvertedType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ConvertedType
impl Debug for ConvertedType
Source§impl From<&ConvertedType> for i32
impl From<&ConvertedType> for i32
Source§fn from(e: &ConvertedType) -> i32
fn from(e: &ConvertedType) -> i32
Source§impl From<&i32> for ConvertedType
impl From<&i32> for ConvertedType
Source§impl From<ConvertedType> for i32
impl From<ConvertedType> for i32
Source§fn from(e: ConvertedType) -> i32
fn from(e: ConvertedType) -> i32
Source§impl From<i32> for ConvertedType
impl From<i32> for ConvertedType
Source§impl Hash for ConvertedType
impl Hash for ConvertedType
Source§impl Ord for ConvertedType
impl Ord for ConvertedType
Source§fn cmp(&self, other: &ConvertedType) -> Ordering
fn cmp(&self, other: &ConvertedType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ConvertedType
impl PartialEq for ConvertedType
Source§impl PartialOrd for ConvertedType
impl PartialOrd for ConvertedType
Source§impl TSerializable for ConvertedType
impl TSerializable for ConvertedType
Source§fn write_to_out_protocol<T: TOutputProtocol>(
&self,
o_prot: &mut T,
) -> Result<()>
fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T, ) -> Result<()>
Source§fn read_from_in_protocol<T: TInputProtocol>(
i_prot: &mut T,
) -> Result<ConvertedType>
fn read_from_in_protocol<T: TInputProtocol>( i_prot: &mut T, ) -> Result<ConvertedType>
impl Copy for ConvertedType
impl Eq for ConvertedType
impl StructuralPartialEq for ConvertedType
Auto Trait Implementations§
impl Freeze for ConvertedType
impl RefUnwindSafe for ConvertedType
impl Send for ConvertedType
impl Sync for ConvertedType
impl Unpin for ConvertedType
impl UnwindSafe for ConvertedType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more