pub struct LargeVec<T> { /* private fields */ }Expand description
Represents the LargeList Arrow type.
Trait Implementations§
Source§impl<T> ArrowDeserialize for LargeVec<T>where
T: ArrowDeserialize + ArrowEnableVecForType + 'static,
<T as ArrowDeserialize>::ArrayType: 'static,
for<'b> &'b <T as ArrowDeserialize>::ArrayType: IntoIterator,
impl<T> ArrowDeserialize for LargeVec<T>where
T: ArrowDeserialize + ArrowEnableVecForType + 'static,
<T as ArrowDeserialize>::ArrayType: 'static,
for<'b> &'b <T as ArrowDeserialize>::ArrayType: IntoIterator,
Source§impl<T> ArrowField for LargeVec<T>where
T: ArrowField + ArrowEnableVecForType,
impl<T> ArrowField for LargeVec<T>where
T: ArrowField + ArrowEnableVecForType,
Source§impl<T> ArrowSerialize for LargeVec<T>where
T: ArrowSerialize + ArrowEnableVecForType + 'static,
<T as ArrowSerialize>::MutableArrayType: Default,
impl<T> ArrowSerialize for LargeVec<T>where
T: ArrowSerialize + ArrowEnableVecForType + 'static,
<T as ArrowSerialize>::MutableArrayType: Default,
Source§type MutableArrayType = MutableListArray<i64, <T as ArrowSerialize>::MutableArrayType>
type MutableArrayType = MutableListArray<i64, <T as ArrowSerialize>::MutableArrayType>
The
arrow2::array::MutableArray that holds this valueSource§fn new_array() -> Self::MutableArrayType
fn new_array() -> Self::MutableArrayType
Create a new mutable array
Source§fn arrow_serialize(
v: &<Self as ArrowField>::Type,
array: &mut Self::MutableArrayType,
) -> Result<()>
fn arrow_serialize( v: &<Self as ArrowField>::Type, array: &mut Self::MutableArrayType, ) -> Result<()>
Serialize this field to arrow
Auto Trait Implementations§
impl<T> Freeze for LargeVec<T>
impl<T> RefUnwindSafe for LargeVec<T>where
T: RefUnwindSafe,
impl<T> Send for LargeVec<T>where
T: Send,
impl<T> Sync for LargeVec<T>where
T: Sync,
impl<T> Unpin for LargeVec<T>where
T: Unpin,
impl<T> UnsafeUnpin for LargeVec<T>
impl<T> UnwindSafe for LargeVec<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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more