struct DecimalUnshredRowBuilder<'a, A: DecimalType, V>where
V: VariantDecimalType<Native = A::Native>,{
value: Option<&'a BinaryViewArray>,
typed_value: &'a PrimitiveArray<A>,
scale: i8,
_phantom: PhantomData<V>,
}Expand description
Generic builder for decimal unshredding
Fields§
§value: Option<&'a BinaryViewArray>§typed_value: &'a PrimitiveArray<A>§scale: i8§_phantom: PhantomData<V>Implementations§
Source§impl<'a, A: DecimalType, V> DecimalUnshredRowBuilder<'a, A, V>where
V: VariantDecimalType<Native = A::Native>,
impl<'a, A: DecimalType, V> DecimalUnshredRowBuilder<'a, A, V>where
V: VariantDecimalType<Native = A::Native>,
Auto Trait Implementations§
impl<'a, A, V> Freeze for DecimalUnshredRowBuilder<'a, A, V>
impl<'a, A, V> RefUnwindSafe for DecimalUnshredRowBuilder<'a, A, V>where
V: RefUnwindSafe,
<A as ArrowPrimitiveType>::Native: RefUnwindSafe,
impl<'a, A, V> Send for DecimalUnshredRowBuilder<'a, A, V>where
V: Send,
impl<'a, A, V> Sync for DecimalUnshredRowBuilder<'a, A, V>where
V: Sync,
impl<'a, A, V> Unpin for DecimalUnshredRowBuilder<'a, A, V>where
V: Unpin,
impl<'a, A, V> UnwindSafe for DecimalUnshredRowBuilder<'a, A, V>where
V: UnwindSafe,
<A as ArrowPrimitiveType>::Native: RefUnwindSafe,
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