arrow_array::types

Struct Date64Type

Source
pub struct Date64Type {}
Expand description

64-bit date type: the elapsed time since UNIX epoch in milliseconds (64 bits). Values must be divisible by 86_400_000. See [DataType::Date64] for more details.

Implementations§

Source§

impl Date64Type

Source

pub fn to_naive_date(i: <Date64Type as ArrowPrimitiveType>::Native) -> NaiveDate

Converts an arrow Date64Type into a chrono::NaiveDate

§Arguments
  • i - The Date64Type to convert
Source

pub fn from_naive_date( d: NaiveDate, ) -> <Date64Type as ArrowPrimitiveType>::Native

Converts a chrono::NaiveDate into an arrow Date64Type

§Arguments
  • d - The NaiveDate to convert
Source

pub fn add_year_months( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Adds the given IntervalYearMonthType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to add
Source

pub fn add_day_time( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Adds the given IntervalDayTimeType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to add
Source

pub fn add_month_day_nano( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Adds the given IntervalMonthDayNanoType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to add
Source

pub fn subtract_year_months( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Subtract the given IntervalYearMonthType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to subtract
Source

pub fn subtract_day_time( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Subtract the given IntervalDayTimeType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to subtract
Source

pub fn subtract_month_day_nano( date: <Date64Type as ArrowPrimitiveType>::Native, delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native, ) -> <Date64Type as ArrowPrimitiveType>::Native

Subtract the given IntervalMonthDayNanoType to an arrow Date64Type

§Arguments
  • date - The date on which to perform the operation
  • delta - The interval to subtract

Trait Implementations§

Source§

impl ArrowPrimitiveType for Date64Type

Source§

const DATA_TYPE: DataType = DataType::Date64

the corresponding Arrow data type of this primitive type.
Source§

type Native = i64

Corresponding Rust native type for the primitive type.
Source§

fn get_byte_width() -> usize

👎Deprecated: Use ArrowNativeType::get_byte_width
Returns the byte width of this primitive type.
Source§

fn default_value() -> Self::Native

Returns a default value of this primitive type. Read more
Source§

impl Debug for Date64Type

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl ArrowTemporalType for Date64Type

Source§

impl PrimitiveTypeSealed for Date64Type

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> ArrowNumericType for T