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.
Source§impl ArrowBindingView for Date32
Available on crate feature views only.
impl ArrowBindingView for Date32
Available on crate feature
views only.Source§type Array = PrimitiveArray<Date32Type>
type Array = PrimitiveArray<Date32Type>
The Arrow array type this view reads from.
Source§impl Ord for Date32
impl Ord for Date32
Source§impl PartialOrd for Date32
impl PartialOrd for Date32
impl Copy for Date32
impl Eq for Date32
impl StructuralPartialEq for Date32
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