pub(crate) struct TimestampArrowToVariantBuilder<'a, T: ArrowTimestampType> {
array: &'a PrimitiveArray<T>,
options: &'a CastOptions,
has_time_zone: bool,
}
Fields§
§array: &'a PrimitiveArray<T>
§options: &'a CastOptions
§has_time_zone: bool
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>
impl<'a, T> Send for TimestampArrowToVariantBuilder<'a, T>
impl<'a, T> Sync for TimestampArrowToVariantBuilder<'a, T>
impl<'a, T> Unpin for TimestampArrowToVariantBuilder<'a, T>
impl<'a, T> UnwindSafe for TimestampArrowToVariantBuilder<'a, T>
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