pub enum TimestampPrecision {
Microsecond,
Nanosecond,
}Expand description
Configuration for timestamp precision when converting ORC timestamps to Arrow.
Variants§
Microsecond
Convert timestamps to microseconds (lower precision).
Nanosecond
Convert timestamps to nanoseconds (default, higher precision).
Trait Implementations§
Source§impl Clone for TimestampPrecision
impl Clone for TimestampPrecision
Source§fn clone(&self) -> TimestampPrecision
fn clone(&self) -> TimestampPrecision
Returns a duplicate 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 TimestampPrecision
impl Debug for TimestampPrecision
Source§impl Default for TimestampPrecision
impl Default for TimestampPrecision
Source§fn default() -> TimestampPrecision
fn default() -> TimestampPrecision
Returns the “default value” for a type. Read more
Source§impl PartialEq for TimestampPrecision
impl PartialEq for TimestampPrecision
impl Copy for TimestampPrecision
impl Eq for TimestampPrecision
impl StructuralPartialEq for TimestampPrecision
Auto Trait Implementations§
impl Freeze for TimestampPrecision
impl RefUnwindSafe for TimestampPrecision
impl Send for TimestampPrecision
impl Sync for TimestampPrecision
impl Unpin for TimestampPrecision
impl UnwindSafe for TimestampPrecision
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.