Struct arrow::datatypes::IntervalMonthDayNanoType

pub struct IntervalMonthDayNanoType {}
Expand description

A “calendar” interval type representing months, days, and nanoseconds. See IntervalMonthDayNano for more details.

Implementations§

§

impl IntervalMonthDayNanoType

pub fn make_value( months: i32, days: i32, nanoseconds: i64, ) -> IntervalMonthDayNano

Creates a IntervalMonthDayNanoType::Native

§Arguments
  • months - The number of months (+/-) represented in this interval
  • days - The number of days (+/-) represented in this interval
  • nanos - The number of nanoseconds (+/-) represented in this interval

pub fn to_parts(i: IntervalMonthDayNano) -> (i32, i32, i64)

Turns a IntervalMonthDayNanoType into a tuple of (months, days, nanos)

§Arguments
  • i - The IntervalMonthDayNanoType to convert

Trait Implementations§

§

impl ArrowPrimitiveType for IntervalMonthDayNanoType

§

type Native = IntervalMonthDayNano

Corresponding Rust native type for the primitive type.
§

const DATA_TYPE: DataType = _

the corresponding Arrow data type of this primitive type.
§

fn get_byte_width() -> usize

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

fn default_value() -> Self::Native

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

impl Debug for IntervalMonthDayNanoType

§

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

Formats the value using the given formatter. Read more

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>,

§

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>,

§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

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

§

impl<T> ArrowNumericType for T

§

impl<T> Ungil for T
where T: Send,