pub struct Date32(/* private fields */);
Expand description
Days since UNIX epoch.
Implementations§
Trait Implementations§
Source§impl ArrowBinding for Date32
impl ArrowBinding for Date32
Source§type Builder = PrimitiveBuilder<Date32Type>
type Builder = PrimitiveBuilder<Date32Type>
Concrete Arrow builder type used for this Rust type.
Source§type Array = PrimitiveArray<Date32Type>
type Array = PrimitiveArray<Date32Type>
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 Date32
impl RefUnwindSafe for Date32
impl Send for Date32
impl Sync for Date32
impl Unpin for Date32
impl UnwindSafe for Date32
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