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