Struct re_arrow2::array::MutableFixedSizeListArray
source · pub struct MutableFixedSizeListArray<M: MutableArray> { /* private fields */ }
Expand description
The mutable version of FixedSizeListArray
.
Implementations§
source§impl<M: MutableArray> MutableFixedSizeListArray<M>
impl<M: MutableArray> MutableFixedSizeListArray<M>
sourcepub fn new(values: M, size: usize) -> Self
pub fn new(values: M, size: usize) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
and size.
sourcepub fn new_with_field(
values: M,
name: &str,
nullable: bool,
size: usize
) -> Self
pub fn new_with_field( values: M, name: &str, nullable: bool, size: usize ) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
and size.
sourcepub fn new_from(values: M, data_type: DataType, size: usize) -> Self
pub fn new_from(values: M, data_type: DataType, size: usize) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
, DataType
and size.
sourcepub const fn size(&self) -> usize
pub const fn size(&self) -> usize
Returns the size (number of elements per slot) of this FixedSizeListArray
.
sourcepub fn mut_values(&mut self) -> &mut M
pub fn mut_values(&mut self) -> &mut M
The values as a mutable reference
sourcepub fn try_push_valid(&mut self) -> Result<()>
pub fn try_push_valid(&mut self) -> Result<()>
Needs to be called when a valid value was extended to this array.
This is a relatively low level function, prefer try_push
when you can.
sourcepub fn push_valid(&mut self)
pub fn push_valid(&mut self)
Needs to be called when a valid value was extended to this array.
This is a relatively low level function, prefer try_push
when you can.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutableFixedSizeListArray
to fit its current length.
Trait Implementations§
source§impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>
impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>
source§fn clone(&self) -> MutableFixedSizeListArray<M>
fn clone(&self) -> MutableFixedSizeListArray<M>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>
impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>
source§impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray
impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray
source§fn from(other: MutableFixedSizeListArray<M>) -> Self
fn from(other: MutableFixedSizeListArray<M>) -> Self
source§impl<M: MutableArray + 'static> MutableArray for MutableFixedSizeListArray<M>
impl<M: MutableArray + 'static> MutableArray for MutableFixedSizeListArray<M>
source§fn validity(&self) -> Option<&MutableBitmap>
fn validity(&self) -> Option<&MutableBitmap>
source§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Array
.source§fn as_mut_any(&mut self) -> &mut dyn Any
fn as_mut_any(&mut self) -> &mut dyn Any
Any
, to enable dynamic casting.source§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
source§impl<M, I, T> PushUnchecked<Option<I>> for MutableFixedSizeListArray<M>
impl<M, I, T> PushUnchecked<Option<I>> for MutableFixedSizeListArray<M>
source§unsafe fn push_unchecked(&mut self, item: Option<I>)
unsafe fn push_unchecked(&mut self, item: Option<I>)
§Safety
The caller must ensure that the I
iterates exactly over size
items, where size
is the fixed size width.
source§impl<M, I, T> TryExtend<Option<I>> for MutableFixedSizeListArray<M>
impl<M, I, T> TryExtend<Option<I>> for MutableFixedSizeListArray<M>
source§fn try_extend<II: IntoIterator<Item = Option<I>>>(
&mut self,
iter: II
) -> Result<()>
fn try_extend<II: IntoIterator<Item = Option<I>>>( &mut self, iter: II ) -> Result<()>
Extend::extend
.source§impl<M> TryExtendFromSelf for MutableFixedSizeListArray<M>where
M: MutableArray + TryExtendFromSelf,
impl<M> TryExtendFromSelf for MutableFixedSizeListArray<M>where
M: MutableArray + TryExtendFromSelf,
Auto Trait Implementations§
impl<M> Freeze for MutableFixedSizeListArray<M>where
M: Freeze,
impl<M> RefUnwindSafe for MutableFixedSizeListArray<M>where
M: RefUnwindSafe,
impl<M> Send for MutableFixedSizeListArray<M>
impl<M> Sync for MutableFixedSizeListArray<M>
impl<M> Unpin for MutableFixedSizeListArray<M>where
M: Unpin,
impl<M> UnwindSafe for MutableFixedSizeListArray<M>where
M: 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
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> ⓘ
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> ⓘ
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