Enum parquet2::schema::types::PrimitiveLogicalType
source · pub enum PrimitiveLogicalType {
String,
Enum,
Decimal(usize, usize),
Date,
Time {
unit: TimeUnit,
is_adjusted_to_utc: bool,
},
Timestamp {
unit: TimeUnit,
is_adjusted_to_utc: bool,
},
Integer(IntegerType),
Unknown,
Json,
Bson,
Uuid,
}
Variants§
Trait Implementations§
source§impl Clone for PrimitiveLogicalType
impl Clone for PrimitiveLogicalType
source§fn clone(&self) -> PrimitiveLogicalType
fn clone(&self) -> PrimitiveLogicalType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PrimitiveLogicalType
impl Debug for PrimitiveLogicalType
source§impl From<PrimitiveLogicalType> for ParquetLogicalType
impl From<PrimitiveLogicalType> for ParquetLogicalType
source§fn from(type_: PrimitiveLogicalType) -> Self
fn from(type_: PrimitiveLogicalType) -> Self
Converts to this type from the input type.
source§impl Hash for PrimitiveLogicalType
impl Hash for PrimitiveLogicalType
source§impl PartialEq<PrimitiveLogicalType> for PrimitiveLogicalType
impl PartialEq<PrimitiveLogicalType> for PrimitiveLogicalType
source§fn eq(&self, other: &PrimitiveLogicalType) -> bool
fn eq(&self, other: &PrimitiveLogicalType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.