pub struct ArrowListBuilder<T: ToArrow<Item = T>> { /* private fields */ }Trait Implementations§
Source§impl<T> ArrayBuilder for ArrowListBuilder<T>where
T: 'static + ToArrow<Item = T>,
impl<T> ArrayBuilder for ArrowListBuilder<T>where
T: 'static + ToArrow<Item = T>,
Source§fn finish_cloned(&self) -> ArrayRef
fn finish_cloned(&self) -> ArrayRef
Builds the array without resetting the underlying builder.
Source§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
Returns the builder as a mutable
Any reference. Read moreSource§impl<T> ArrowBuilder<Vec<T>> for ArrowListBuilder<T>where
T: 'static + ToArrow<Item = T>,
impl<T> ArrowBuilder<Vec<T>> for ArrowListBuilder<T>where
T: 'static + ToArrow<Item = T>,
fn new_with_capacity(capacity: usize) -> Self
fn append_value(&mut self, value: Vec<T>)
fn append_option(&mut self, value: Option<Vec<T>>)
Auto Trait Implementations§
impl<T> Freeze for ArrowListBuilder<T>
impl<T> RefUnwindSafe for ArrowListBuilder<T>
impl<T> Send for ArrowListBuilder<T>
impl<T> Sync for ArrowListBuilder<T>
impl<T> Unpin for ArrowListBuilder<T>
impl<T> UnwindSafe for ArrowListBuilder<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