Struct 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 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>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Converts to this type from the input type.
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>
The optional validity of the array.
source§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Convert itself to an (immutable) atomically reference counted
Array
.source§fn as_mut_any(&mut self) -> &mut dyn Any
fn as_mut_any(&mut self) -> &mut dyn Any
Convert to mutable
Any
, to enable dynamic casting.source§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
Shrink the array to fit its length.
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<()>
Fallible version of
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
Mutably borrows from an owned value. Read more