pub struct TimestampTz<U: TimeUnitSpec, Z: TimeZoneSpec>(/* private fields */);
Expand description
Timestamp with time unit U
and timezone marker Z
.
Implementations§
Source§impl<U: TimeUnitSpec, Z: TimeZoneSpec> TimestampTz<U, Z>
impl<U: TimeUnitSpec, Z: TimeZoneSpec> TimestampTz<U, Z>
Trait Implementations§
Source§impl<U: TimeUnitSpec, Z: TimeZoneSpec> ArrowBinding for TimestampTz<U, Z>
impl<U: TimeUnitSpec, Z: TimeZoneSpec> ArrowBinding for TimestampTz<U, Z>
Source§type Builder = PrimitiveBuilder<<U as TimeUnitSpec>::Arrow>
type Builder = PrimitiveBuilder<<U as TimeUnitSpec>::Arrow>
Concrete Arrow builder type used for this Rust type.
Source§type Array = PrimitiveArray<<U as TimeUnitSpec>::Arrow>
type Array = PrimitiveArray<<U as TimeUnitSpec>::Arrow>
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<U, Z> Freeze for TimestampTz<U, Z>
impl<U, Z> RefUnwindSafe for TimestampTz<U, Z>where
U: RefUnwindSafe,
Z: RefUnwindSafe,
impl<U, Z> Send for TimestampTz<U, Z>
impl<U, Z> Sync for TimestampTz<U, Z>
impl<U, Z> Unpin for TimestampTz<U, Z>
impl<U, Z> UnwindSafe for TimestampTz<U, Z>where
U: UnwindSafe,
Z: UnwindSafe,
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