Struct arrow2_convert::field::LargeVec
source · [−]pub struct LargeVec<T> { /* private fields */ }Expand description
Represents the LargeList Arrow type.
Trait Implementations
sourceimpl<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,
sourceimpl<T> ArrowField for LargeVec<T>where
T: ArrowField + ArrowEnableVecForType,
impl<T> ArrowField for LargeVec<T>where
T: ArrowField + ArrowEnableVecForType,
sourceimpl<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,
type MutableArrayType = MutableListArray<i64, <T as ArrowSerialize>::MutableArrayType>
type MutableArrayType = MutableListArray<i64, <T as ArrowSerialize>::MutableArrayType>
The
arrow2::array::MutableArray that holds this valuesourcefn new_array() -> Self::MutableArrayType
fn new_array() -> Self::MutableArrayType
Create a new mutable array
sourcefn 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> 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> UnwindSafe for LargeVec<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more