Enum parquet2::schema::types::PhysicalType
source · pub enum PhysicalType {
Boolean,
Int32,
Int64,
Int96,
Float,
Double,
ByteArray,
FixedLenByteArray(usize),
}
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 From<PhysicalType> for (Type, Option<i32>)
impl From<PhysicalType> for (Type, Option<i32>)
source§fn from(physical_type: PhysicalType) -> Self
fn from(physical_type: PhysicalType) -> Self
Converts to this type from the input type.
source§impl Hash for PhysicalType
impl Hash for PhysicalType
source§impl PartialEq for PhysicalType
impl PartialEq 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 StructuralPartialEq for PhysicalType
Auto Trait Implementations§
impl Freeze for PhysicalType
impl RefUnwindSafe for PhysicalType
impl Send for PhysicalType
impl Sync for PhysicalType
impl Unpin for PhysicalType
impl UnwindSafe for PhysicalType
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
Mutably borrows from an owned value. Read more