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.
Source§fn finish(b: Self::Builder) -> Self::Array
fn finish(b: Self::Builder) -> Self::Array
Finish the builder and produce a typed Arrow array.
Source§fn estimated_bytes_per_value() -> usize
fn estimated_bytes_per_value() -> usize
Estimated bytes per value for variable-length types (String, Binary, etc.).
Returns 0 for fixed-size types. Used to pre-allocate buffer space.
Source§impl ArrowBindingView for Date64
Available on crate feature views only.
impl ArrowBindingView for Date64
Available on crate feature
views only.Source§type Array = PrimitiveArray<Date64Type>
type Array = PrimitiveArray<Date64Type>
The Arrow array type this view reads from.
Source§impl Ord for Date64
impl Ord for Date64
Source§impl PartialOrd for Date64
impl PartialOrd for Date64
impl Copy for Date64
impl Eq for Date64
impl StructuralPartialEq for Date64
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