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