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
sourceimpl Clone for IntervalUnit
impl Clone for IntervalUnit
sourcefn clone(&self) -> IntervalUnit
fn clone(&self) -> IntervalUnit
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for IntervalUnit
impl Debug for IntervalUnit
sourceimpl Hash for IntervalUnit
impl Hash for IntervalUnit
sourceimpl Ord for IntervalUnit
impl Ord for IntervalUnit
sourcefn cmp(&self, other: &IntervalUnit) -> Ordering
fn cmp(&self, other: &IntervalUnit) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<IntervalUnit> for IntervalUnit
impl PartialEq<IntervalUnit> for IntervalUnit
sourcefn eq(&self, other: &IntervalUnit) -> bool
fn eq(&self, other: &IntervalUnit) -> bool
sourceimpl PartialOrd<IntervalUnit> for IntervalUnit
impl PartialOrd<IntervalUnit> for IntervalUnit
sourcefn partial_cmp(&self, other: &IntervalUnit) -> Option<Ordering>
fn partial_cmp(&self, other: &IntervalUnit) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for IntervalUnit
impl StructuralEq for IntervalUnit
impl StructuralPartialEq for IntervalUnit
Auto Trait Implementations
impl RefUnwindSafe for IntervalUnit
impl Send for IntervalUnit
impl Sync for IntervalUnit
impl Unpin for IntervalUnit
impl UnwindSafe for IntervalUnit
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more