pub struct IntervalMonthDayNanoType {}
Expand description
“Calendar” interval type: months, days, and nanoseconds. See IntervalMonthDayNano
for more details.
Implementations§
Source§impl IntervalMonthDayNanoType
impl IntervalMonthDayNanoType
Sourcepub fn make_value(
months: i32,
days: i32,
nanoseconds: i64,
) -> IntervalMonthDayNano
pub fn make_value( months: i32, days: i32, nanoseconds: i64, ) -> IntervalMonthDayNano
Creates a IntervalMonthDayNanoType::Native
§Arguments
months
- The number of months (+/-) represented in this intervaldays
- The number of days (+/-) represented in this intervalnanos
- The number of nanoseconds (+/-) represented in this interval
Trait Implementations§
Source§impl ArrowPrimitiveType for IntervalMonthDayNanoType
impl ArrowPrimitiveType for IntervalMonthDayNanoType
Source§type Native = IntervalMonthDayNano
type Native = IntervalMonthDayNano
Corresponding Rust native type for the primitive type.
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 Debug for IntervalMonthDayNanoType
impl Debug for IntervalMonthDayNanoType
impl PrimitiveTypeSealed for IntervalMonthDayNanoType
Auto Trait Implementations§
impl Freeze for IntervalMonthDayNanoType
impl RefUnwindSafe for IntervalMonthDayNanoType
impl Send for IntervalMonthDayNanoType
impl Sync for IntervalMonthDayNanoType
impl Unpin for IntervalMonthDayNanoType
impl UnwindSafe for IntervalMonthDayNanoType
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