pub struct TimestampArrayDecoder<P: ArrowTimestampType, Tz: TimeZone> {
data_type: DataType,
timezone: Tz,
phantom: PhantomData<fn(_: P) -> P>,
}
Expand description
A specialized ArrayDecoder
for timestamps
Fields§
§data_type: DataType
§timezone: Tz
§phantom: PhantomData<fn(_: P) -> P>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<P, Tz> Freeze for TimestampArrayDecoder<P, Tz>where
Tz: Freeze,
impl<P, Tz> RefUnwindSafe for TimestampArrayDecoder<P, Tz>where
Tz: RefUnwindSafe,
impl<P, Tz> Send for TimestampArrayDecoder<P, Tz>where
Tz: Send,
impl<P, Tz> Sync for TimestampArrayDecoder<P, Tz>where
Tz: Sync,
impl<P, Tz> Unpin for TimestampArrayDecoder<P, Tz>where
Tz: Unpin,
impl<P, Tz> UnwindSafe for TimestampArrayDecoder<P, Tz>where
Tz: 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