pub(crate) struct VariantPathRowBuilder<'a> {
    builder: Box<VariantToArrowRowBuilder<'a>>,
    path: VariantPath<'a>,
}Expand description
A thin wrapper whose only job is to extract a specific path from a variant value and pass the result to a nested builder.
Fields§
§builder: Box<VariantToArrowRowBuilder<'a>>§path: VariantPath<'a>Implementations§
Source§impl<'a> VariantPathRowBuilder<'a>
 
impl<'a> VariantPathRowBuilder<'a>
fn append_null(&mut self) -> Result<()>
fn append_value(&mut self, value: Variant<'_, '_>) -> Result<bool>
fn finish(self) -> Result<ArrayRef>
Auto Trait Implementations§
impl<'a> Freeze for VariantPathRowBuilder<'a>
impl<'a> RefUnwindSafe for VariantPathRowBuilder<'a>
impl<'a> Send for VariantPathRowBuilder<'a>
impl<'a> Sync for VariantPathRowBuilder<'a>
impl<'a> Unpin for VariantPathRowBuilder<'a>
impl<'a> UnwindSafe for VariantPathRowBuilder<'a>
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