pub struct IntervalYearMonth(/* private fields */);
Expand description
Interval with unit YearMonth
(i32 months since epoch).
Implementations§
Trait Implementations§
Source§impl ArrowBinding for IntervalYearMonth
impl ArrowBinding for IntervalYearMonth
Source§type Builder = PrimitiveBuilder<IntervalYearMonthType>
type Builder = PrimitiveBuilder<IntervalYearMonthType>
Concrete Arrow builder type used for this Rust type.
Source§type Array = PrimitiveArray<IntervalYearMonthType>
type Array = PrimitiveArray<IntervalYearMonthType>
Concrete Arrow array type produced by
finish
.Source§fn new_builder(capacity: usize) -> Self::Builder
fn new_builder(capacity: usize) -> Self::Builder
Create a new builder with an optional capacity hint.
Source§fn append_value(b: &mut Self::Builder, v: &Self)
fn append_value(b: &mut Self::Builder, v: &Self)
Append a non-null value to the builder.
Source§fn append_null(b: &mut Self::Builder)
fn append_null(b: &mut Self::Builder)
Append a null to the builder.
Auto Trait Implementations§
impl Freeze for IntervalYearMonth
impl RefUnwindSafe for IntervalYearMonth
impl Send for IntervalYearMonth
impl Sync for IntervalYearMonth
impl Unpin for IntervalYearMonth
impl UnwindSafe for IntervalYearMonth
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