pub struct TimestampMillisecondType {}
Expand description
Timestamp millisecond type with an optional timezone.
Implementations§
Source§impl TimestampMillisecondType
impl TimestampMillisecondType
Sourcepub fn add_year_months(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn add_year_months( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Adds the given IntervalYearMonthType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Sourcepub fn add_day_time(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn add_day_time( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Adds the given IntervalDayTimeType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Sourcepub fn add_month_day_nano(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn add_month_day_nano( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Adds the given IntervalMonthDayNanoType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Sourcepub fn subtract_year_months(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn subtract_year_months( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalYearMonthType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Subtracts the given IntervalYearMonthType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Sourcepub fn subtract_day_time(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn subtract_day_time( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalDayTimeType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Subtracts the given IntervalDayTimeType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Sourcepub fn subtract_month_day_nano(
timestamp: <Self as ArrowPrimitiveType>::Native,
delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native,
tz: Tz,
) -> Option<<Self as ArrowPrimitiveType>::Native>
pub fn subtract_month_day_nano( timestamp: <Self as ArrowPrimitiveType>::Native, delta: <IntervalMonthDayNanoType as ArrowPrimitiveType>::Native, tz: Tz, ) -> Option<<Self as ArrowPrimitiveType>::Native>
Subtracts the given IntervalMonthDayNanoType to an arrow TimestampMillisecondType
§Arguments
timestamp
- The date on which to perform the operationdelta
- The interval to addtz
- The timezone in which to interprettimestamp
Trait Implementations§
Source§impl ArrowPrimitiveType for TimestampMillisecondType
impl ArrowPrimitiveType for TimestampMillisecondType
Source§fn get_byte_width() -> usize
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
fn default_value() -> Self::Native
Returns a default value of this primitive type. Read more
Source§impl ArrowTimestampType for TimestampMillisecondType
impl ArrowTimestampType for TimestampMillisecondType
Source§fn make_value(naive: NaiveDateTime) -> Option<i64>
fn make_value(naive: NaiveDateTime) -> Option<i64>
Creates a ArrowTimestampType::Native from the provided
NaiveDateTime
Read moreSource§fn get_time_unit() -> TimeUnit
fn get_time_unit() -> TimeUnit
👎Deprecated: Use Self::UNIT
Returns the
TimeUnit
of this timestamp.Source§impl Debug for TimestampMillisecondType
impl Debug for TimestampMillisecondType
impl ArrowTemporalType for TimestampMillisecondType
impl PrimitiveTypeSealed for TimestampMillisecondType
Auto Trait Implementations§
impl Freeze for TimestampMillisecondType
impl RefUnwindSafe for TimestampMillisecondType
impl Send for TimestampMillisecondType
impl Sync for TimestampMillisecondType
impl Unpin for TimestampMillisecondType
impl UnwindSafe for TimestampMillisecondType
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