pub enum PhysicalType {
Boolean,
Int32,
Int64,
Int96,
Float,
Double,
ByteArray,
FixedLenByteArray(usize),
}
Available on crate feature
io_parquet
only.Expand description
The set of all physical types representable in Parquet
Variants§
Trait Implementations§
source§impl Clone for PhysicalType
impl Clone for PhysicalType
source§fn clone(&self) -> PhysicalType
fn clone(&self) -> PhysicalType
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 PhysicalType
impl Debug for PhysicalType
source§impl Hash for PhysicalType
impl Hash for PhysicalType
source§impl PartialEq<PhysicalType> for PhysicalType
impl PartialEq<PhysicalType> for PhysicalType
source§fn eq(&self, other: &PhysicalType) -> bool
fn eq(&self, other: &PhysicalType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PhysicalType
impl Eq for PhysicalType
impl StructuralEq for PhysicalType
impl StructuralPartialEq for PhysicalType
Auto Trait Implementations§
impl RefUnwindSafe for PhysicalType
impl Send for PhysicalType
impl Sync for PhysicalType
impl Unpin for PhysicalType
impl UnwindSafe for PhysicalType
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.