pub(crate) struct TimestampArrowToVariantBuilder<'a, T: ArrowTimestampType> {
    array: &'a PrimitiveArray<T>,
    options: &'a CastOptions,
    has_time_zone: bool,
    _phantom: PhantomData<(T,)>,
}Fields§
§array: &'a PrimitiveArray<T>§options: &'a CastOptions§has_time_zone: bool§_phantom: PhantomData<(T,)>Implementations§
Source§impl<'a, T: ArrowTimestampType> TimestampArrowToVariantBuilder<'a, T>
 
impl<'a, T: ArrowTimestampType> TimestampArrowToVariantBuilder<'a, T>
pub(crate) fn new( array: &'a dyn Array, options: &'a CastOptions, has_time_zone: bool, ) -> Self
fn append_row( &self, builder: &mut impl VariantBuilderExt, index: usize, ) -> Result<(), ArrowError>
Auto Trait Implementations§
impl<'a, T> Freeze for TimestampArrowToVariantBuilder<'a, T>
impl<'a, T> RefUnwindSafe for TimestampArrowToVariantBuilder<'a, T>where
    T: RefUnwindSafe,
impl<'a, T> Send for TimestampArrowToVariantBuilder<'a, T>where
    T: Send,
impl<'a, T> Sync for TimestampArrowToVariantBuilder<'a, T>where
    T: Sync,
impl<'a, T> Unpin for TimestampArrowToVariantBuilder<'a, T>where
    T: Unpin,
impl<'a, T> UnwindSafe for TimestampArrowToVariantBuilder<'a, T>where
    T: 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