pub struct LargeList<T>(/* private fields */);Expand description
Wrapper denoting an Arrow LargeListArray column with elements of T.
Implementations§
Trait Implementations§
Source§impl<T> ArrowBinding for LargeList<Option<T>>
Provide ArrowBinding for LargeList<Option<T>> so users can express
item-nullability via Option in the type parameter for LargeList.
impl<T> ArrowBinding for LargeList<Option<T>>
Provide ArrowBinding for LargeList<Option<T>> so users can express
item-nullability via Option in the type parameter for LargeList.
Source§type Builder = GenericListBuilder<i64, <T as ArrowBinding>::Builder>
type Builder = GenericListBuilder<i64, <T as ArrowBinding>::Builder>
Concrete Arrow builder type used for this Rust type.
Source§type Array = GenericListArray<i64>
type Array = GenericListArray<i64>
Concrete Arrow array type produced by
finish.Source§fn new_builder(_capacity: usize) -> Self::Builder
fn new_builder(_capacity: usize) -> Self::Builder
Create a new builder with an optional capacity hint.
Source§fn append_value(b: &mut Self::Builder, v: &Self)
fn append_value(b: &mut Self::Builder, v: &Self)
Append a non-null value to the builder.
Source§fn append_null(b: &mut Self::Builder)
fn append_null(b: &mut Self::Builder)
Append a null to the builder.
Source§impl<T> ArrowBinding for LargeList<T>
impl<T> ArrowBinding for LargeList<T>
Source§type Builder = GenericListBuilder<i64, <T as ArrowBinding>::Builder>
type Builder = GenericListBuilder<i64, <T as ArrowBinding>::Builder>
Concrete Arrow builder type used for this Rust type.
Source§type Array = GenericListArray<i64>
type Array = GenericListArray<i64>
Concrete Arrow array type produced by
finish.Source§fn new_builder(_capacity: usize) -> Self::Builder
fn new_builder(_capacity: usize) -> Self::Builder
Create a new builder with an optional capacity hint.
Source§fn append_value(b: &mut Self::Builder, v: &Self)
fn append_value(b: &mut Self::Builder, v: &Self)
Append a non-null value to the builder.
Source§fn append_null(b: &mut Self::Builder)
fn append_null(b: &mut Self::Builder)
Append a null to the builder.
Source§impl<T> ArrowBindingView for LargeList<Option<T>>where
T: ArrowBinding + ArrowBindingView + 'static,
Available on crate feature views only.
impl<T> ArrowBindingView for LargeList<Option<T>>where
T: ArrowBinding + ArrowBindingView + 'static,
Available on crate feature
views only.Source§impl<T> ArrowBindingView for LargeList<T>where
T: ArrowBinding + ArrowBindingView + 'static,
Available on crate feature views only.
impl<T> ArrowBindingView for LargeList<T>where
T: ArrowBinding + ArrowBindingView + 'static,
Available on crate feature
views only.Source§impl<T> FromIterator<T> for LargeList<T>
impl<T> FromIterator<T> for LargeList<T>
Source§fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Collect an iterator into a LargeList<T>.
Auto Trait Implementations§
impl<T> Freeze for LargeList<T>
impl<T> RefUnwindSafe for LargeList<T>where
T: RefUnwindSafe,
impl<T> Send for LargeList<T>where
T: Send,
impl<T> Sync for LargeList<T>where
T: Sync,
impl<T> Unpin for LargeList<T>where
T: Unpin,
impl<T> UnwindSafe for LargeList<T>where
T: UnwindSafe,
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