Struct re_sdk::external::arrow2::array::MutablePrimitiveArray
pub struct MutablePrimitiveArray<T>where
T: NativeType,{
data_type: DataType,
values: Vec<T>,
validity: Option<MutableBitmap>,
}
Expand description
The Arrow’s equivalent to Vec<Option<T>>
where T
is byte-size (e.g. i32
).
Converting a MutablePrimitiveArray
into a PrimitiveArray
is O(1)
.
Fields§
§data_type: DataType
§values: Vec<T>
§validity: Option<MutableBitmap>
Implementations§
§impl<'a, T> MutablePrimitiveArray<T>where
T: NativeType,
impl<'a, T> MutablePrimitiveArray<T>where
T: NativeType,
pub fn iter(&'a self) -> ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>> ⓘ
pub fn iter(&'a self) -> ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>> ⓘ
Returns an iterator over Option<T>
pub fn values_iter(&'a self) -> Iter<'a, T>
pub fn values_iter(&'a self) -> Iter<'a, T>
Returns an iterator of T
§impl<T> MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutablePrimitiveArray<T>where
T: NativeType,
pub fn new() -> MutablePrimitiveArray<T>
pub fn new() -> MutablePrimitiveArray<T>
Creates a new empty MutablePrimitiveArray
.
pub fn with_capacity(capacity: usize) -> MutablePrimitiveArray<T>
pub fn with_capacity(capacity: usize) -> MutablePrimitiveArray<T>
Creates a new MutablePrimitiveArray
with a capacity.
pub fn try_new(
data_type: DataType,
values: Vec<T>,
validity: Option<MutableBitmap>
) -> Result<MutablePrimitiveArray<T>, Error>
pub fn try_new( data_type: DataType, values: Vec<T>, validity: Option<MutableBitmap> ) -> Result<MutablePrimitiveArray<T>, Error>
The canonical method to create a MutablePrimitiveArray
out of its internal components.
§Implementation
This function is O(1)
.
§Errors
This function errors iff:
- The validity is not
None
and its length is different fromvalues
’s length - The
data_type
’scrate::datatypes::PhysicalType
is not equal to [crate::datatypes::PhysicalType::Primitive(T::PRIMITIVE)
]
pub fn into_inner(self) -> (DataType, Vec<T>, Option<MutableBitmap>)
pub fn into_inner(self) -> (DataType, Vec<T>, Option<MutableBitmap>)
Extract the low-end APIs from the MutablePrimitiveArray
.
pub fn apply_values<F>(&mut self, f: F)
pub fn apply_values<F>(&mut self, f: F)
Applies a function f
to the values of this array, cloning the values
iff they are being shared with others
This is an API to use clone-on-write
§Implementation
This function is O(f)
if the data is not being shared, and O(N) + O(f)
if it is being shared (since it results in a O(N)
memcopy).
§Panics
This function panics iff f
panics
§impl<T> MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutablePrimitiveArray<T>where
T: NativeType,
pub fn with_capacity_from(
capacity: usize,
data_type: DataType
) -> MutablePrimitiveArray<T>
pub fn with_capacity_from( capacity: usize, data_type: DataType ) -> MutablePrimitiveArray<T>
Creates a new MutablePrimitiveArray
from a capacity and DataType
.
pub fn pop(&mut self) -> Option<T>
pub fn pop(&mut self) -> Option<T>
Pop a value from the array. Note if the values is empty, this method will return None.
pub fn extend_constant(&mut self, additional: usize, value: Option<T>)
pub fn extend_constant(&mut self, additional: usize, value: Option<T>)
Extends the MutablePrimitiveArray
with a constant
pub fn extend_trusted_len<P, I>(&mut self, iterator: I)
pub fn extend_trusted_len<P, I>(&mut self, iterator: I)
Extends the MutablePrimitiveArray
from an iterator of trusted len.
pub unsafe fn extend_trusted_len_unchecked<P, I>(&mut self, iterator: I)
pub unsafe fn extend_trusted_len_unchecked<P, I>(&mut self, iterator: I)
Extends the MutablePrimitiveArray
from an iterator of trusted len.
§Safety
The iterator must be trusted len.
pub fn extend_trusted_len_values<I>(&mut self, iterator: I)where
I: TrustedLen<Item = T>,
pub fn extend_trusted_len_values<I>(&mut self, iterator: I)where
I: TrustedLen<Item = T>,
Extends the MutablePrimitiveArray
from an iterator of values of trusted len.
This differs from extend_trusted_len
which accepts in iterator of optional values.
pub unsafe fn extend_trusted_len_values_unchecked<I>(&mut self, iterator: I)where
I: Iterator<Item = T>,
pub unsafe fn extend_trusted_len_values_unchecked<I>(&mut self, iterator: I)where
I: Iterator<Item = T>,
Extends the MutablePrimitiveArray
from an iterator of values of trusted len.
This differs from extend_trusted_len_unchecked
which accepts in iterator of optional values.
§Safety
The iterator must be trusted len.
pub fn extend_from_slice(&mut self, items: &[T])
pub fn extend_from_slice(&mut self, items: &[T])
Extends the MutablePrimitiveArray
from a slice
pub fn to(self, data_type: DataType) -> MutablePrimitiveArray<T>
pub fn to(self, data_type: DataType) -> MutablePrimitiveArray<T>
Changes the arrays’ DataType
, returning a new MutablePrimitiveArray
.
Use to change the logical type without changing the corresponding physical Type.
§Implementation
This operation is O(1)
.
pub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutablePrimitiveArray
to fit its current length.
pub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the capacity of this MutablePrimitiveArray
.
§impl<T> MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutablePrimitiveArray<T>where
T: NativeType,
Accessors
pub fn values_mut_slice(&mut self) -> &mut [T]
pub fn values_mut_slice(&mut self) -> &mut [T]
Returns a mutable slice of values.
§impl<T> MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutablePrimitiveArray<T>where
T: NativeType,
Setters
pub fn set(&mut self, index: usize, value: Option<T>)
pub fn set(&mut self, index: usize, value: Option<T>)
Sets position index
to value
.
Note that if it is the first time a null appears in this array,
this initializes the validity bitmap (O(N)
).
§Panic
Panics iff index is larger than self.len()
.
pub unsafe fn set_unchecked(&mut self, index: usize, value: Option<T>)
pub unsafe fn set_unchecked(&mut self, index: usize, value: Option<T>)
Sets position index
to value
.
Note that if it is the first time a null appears in this array,
this initializes the validity bitmap (O(N)
).
§Safety
Caller must ensure index < self.len()
pub fn set_validity(&mut self, validity: Option<MutableBitmap>)
pub fn set_validity(&mut self, validity: Option<MutableBitmap>)
Sets the validity.
§Panic
Panics iff the validity’s len is not equal to the existing values’ length.
pub fn set_values(&mut self, values: Vec<T>)
pub fn set_values(&mut self, values: Vec<T>)
§impl<T> MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutablePrimitiveArray<T>where
T: NativeType,
pub fn from_slice<P>(slice: P) -> MutablePrimitiveArray<T>
pub fn from_slice<P>(slice: P) -> MutablePrimitiveArray<T>
Creates a MutablePrimitiveArray
from a slice of values.
pub unsafe fn from_trusted_len_iter_unchecked<I, P>(
iterator: I
) -> MutablePrimitiveArray<T>
pub unsafe fn from_trusted_len_iter_unchecked<I, P>( iterator: I ) -> MutablePrimitiveArray<T>
Creates a MutablePrimitiveArray
from an iterator of trusted length.
§Safety
The iterator must be TrustedLen
.
I.e. size_hint().1
correctly reports its length.
pub fn from_trusted_len_iter<I, P>(iterator: I) -> MutablePrimitiveArray<T>
pub fn from_trusted_len_iter<I, P>(iterator: I) -> MutablePrimitiveArray<T>
Creates a MutablePrimitiveArray
from a TrustedLen
.
pub unsafe fn try_from_trusted_len_iter_unchecked<E, I, P>(
iter: I
) -> Result<MutablePrimitiveArray<T>, E>
pub unsafe fn try_from_trusted_len_iter_unchecked<E, I, P>( iter: I ) -> Result<MutablePrimitiveArray<T>, E>
Creates a MutablePrimitiveArray
from an fallible iterator of trusted length.
§Safety
The iterator must be TrustedLen
.
I.e. that size_hint().1
correctly reports its length.
pub fn try_from_trusted_len_iter<E, I, P>(
iterator: I
) -> Result<MutablePrimitiveArray<T>, E>
pub fn try_from_trusted_len_iter<E, I, P>( iterator: I ) -> Result<MutablePrimitiveArray<T>, E>
Creates a MutablePrimitiveArray
from an fallible iterator of trusted length.
pub fn from_trusted_len_values_iter<I>(iter: I) -> MutablePrimitiveArray<T>where
I: TrustedLen<Item = T>,
pub fn from_trusted_len_values_iter<I>(iter: I) -> MutablePrimitiveArray<T>where
I: TrustedLen<Item = T>,
Creates a new MutablePrimitiveArray
out an iterator over values
pub fn from_vec(values: Vec<T>) -> MutablePrimitiveArray<T>
pub fn from_vec(values: Vec<T>) -> MutablePrimitiveArray<T>
Creates a (non-null) MutablePrimitiveArray
from a vector of values.
This does not have memcopy and is the fastest way to create a PrimitiveArray
.
pub unsafe fn from_trusted_len_values_iter_unchecked<I>(
iter: I
) -> MutablePrimitiveArray<T>where
I: Iterator<Item = T>,
pub unsafe fn from_trusted_len_values_iter_unchecked<I>(
iter: I
) -> MutablePrimitiveArray<T>where
I: Iterator<Item = T>,
Creates a new MutablePrimitiveArray
from an iterator over values
§Safety
The iterator must be TrustedLen
.
I.e. that size_hint().1
correctly reports its length.
Trait Implementations§
§impl<T> Clone for MutablePrimitiveArray<T>where
T: Clone + NativeType,
impl<T> Clone for MutablePrimitiveArray<T>where
T: Clone + NativeType,
§fn clone(&self) -> MutablePrimitiveArray<T>
fn clone(&self) -> MutablePrimitiveArray<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl<T> Debug for MutablePrimitiveArray<T>where
T: Debug + NativeType,
impl<T> Debug for MutablePrimitiveArray<T>where
T: Debug + NativeType,
§impl<T> Default for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> Default for MutablePrimitiveArray<T>where
T: NativeType,
§fn default() -> MutablePrimitiveArray<T>
fn default() -> MutablePrimitiveArray<T>
§impl<T> Extend<Option<T>> for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> Extend<Option<T>> for MutablePrimitiveArray<T>where
T: NativeType,
§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Option<T>>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Option<T>>,
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)§impl<T> From<DataType> for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> From<DataType> for MutablePrimitiveArray<T>where
T: NativeType,
§fn from(data_type: DataType) -> MutablePrimitiveArray<T>
fn from(data_type: DataType) -> MutablePrimitiveArray<T>
§impl<T> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>where
T: NativeType,
impl<T> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>where
T: NativeType,
§fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>
fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>
§impl<T, P> From<P> for MutablePrimitiveArray<T>
impl<T, P> From<P> for MutablePrimitiveArray<T>
§fn from(slice: P) -> MutablePrimitiveArray<T>
fn from(slice: P) -> MutablePrimitiveArray<T>
§impl<T, Ptr> FromIterator<Ptr> for MutablePrimitiveArray<T>
impl<T, Ptr> FromIterator<Ptr> for MutablePrimitiveArray<T>
§fn from_iter<I>(iter: I) -> MutablePrimitiveArray<T>where
I: IntoIterator<Item = Ptr>,
fn from_iter<I>(iter: I) -> MutablePrimitiveArray<T>where
I: IntoIterator<Item = Ptr>,
§impl<T> MutableArray for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> MutableArray for MutablePrimitiveArray<T>where
T: NativeType,
§fn validity(&self) -> Option<&MutableBitmap>
fn validity(&self) -> Option<&MutableBitmap>
§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Array
.§fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)
fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)
Any
, to enable dynamic casting.§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
§impl<T> PartialEq for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> PartialEq for MutablePrimitiveArray<T>where
T: NativeType,
§fn eq(&self, other: &MutablePrimitiveArray<T>) -> bool
fn eq(&self, other: &MutablePrimitiveArray<T>) -> bool
self
and other
values to be equal, and is used
by ==
.§impl<T> TryExtend<Option<T>> for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> TryExtend<Option<T>> for MutablePrimitiveArray<T>where
T: NativeType,
§fn try_extend<I>(&mut self, iter: I) -> Result<(), Error>where
I: IntoIterator<Item = Option<T>>,
fn try_extend<I>(&mut self, iter: I) -> Result<(), Error>where
I: IntoIterator<Item = Option<T>>,
This is infalible and is implemented for consistency with all other types
§impl<T> TryExtendFromSelf for MutablePrimitiveArray<T>where
T: NativeType,
impl<T> TryExtendFromSelf for MutablePrimitiveArray<T>where
T: NativeType,
§fn try_extend_from_self(
&mut self,
other: &MutablePrimitiveArray<T>
) -> Result<(), Error>
fn try_extend_from_self( &mut self, other: &MutablePrimitiveArray<T> ) -> Result<(), Error>
other
, failing only on overflow.Auto Trait Implementations§
impl<T> Freeze for MutablePrimitiveArray<T>
impl<T> RefUnwindSafe for MutablePrimitiveArray<T>
impl<T> Send for MutablePrimitiveArray<T>
impl<T> Sync for MutablePrimitiveArray<T>
impl<T> Unpin for MutablePrimitiveArray<T>where
T: Unpin,
impl<T> UnwindSafe for MutablePrimitiveArray<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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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