Enum arrow_schema::IntervalUnit
source · pub enum IntervalUnit {
YearMonth,
DayTime,
MonthDayNano,
}
Expand description
YEAR_MONTH, DAY_TIME, MONTH_DAY_NANO interval in SQL style.
Variants§
YearMonth
Indicates the number of elapsed whole months, stored as 4-byte integers.
DayTime
Indicates the number of elapsed days and milliseconds, stored as 2 contiguous 32-bit integers (days, milliseconds) (8-bytes in total).
MonthDayNano
A triple of the number of elapsed months, days, and nanoseconds. The values are stored contiguously in 16 byte blocks. Months and days are encoded as 32 bit integers and nanoseconds is encoded as a 64 bit integer. All integers are signed. Each field is independent (e.g. there is no constraint that nanoseconds have the same sign as days or that the quantity of nanoseconds represents less than a day’s worth of time).
Trait Implementations§
source§impl Clone for IntervalUnit
impl Clone for IntervalUnit
source§fn clone(&self) -> IntervalUnit
fn clone(&self) -> IntervalUnit
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 IntervalUnit
impl Debug for IntervalUnit
source§impl Hash for IntervalUnit
impl Hash for IntervalUnit
source§impl Ord for IntervalUnit
impl Ord for IntervalUnit
source§fn cmp(&self, other: &IntervalUnit) -> Ordering
fn cmp(&self, other: &IntervalUnit) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for IntervalUnit
impl PartialEq for IntervalUnit
source§impl PartialOrd for IntervalUnit
impl PartialOrd for IntervalUnit
impl Eq for IntervalUnit
impl StructuralPartialEq for IntervalUnit
Auto Trait Implementations§
impl Freeze for IntervalUnit
impl RefUnwindSafe for IntervalUnit
impl Send for IntervalUnit
impl Sync for IntervalUnit
impl Unpin for IntervalUnit
impl UnwindSafe for IntervalUnit
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)