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