polars_arrow::array

Struct MutableStructArray

Source
pub struct MutableStructArray { /* private fields */ }
Expand description

Converting a MutableStructArray into a StructArray is O(1).

Implementations§

Source§

impl MutableStructArray

Source

pub fn new( dtype: ArrowDataType, length: usize, values: Vec<Box<dyn MutableArray>>, ) -> Self

Creates a new MutableStructArray.

Source

pub fn try_new( dtype: ArrowDataType, length: usize, values: Vec<Box<dyn MutableArray>>, validity: Option<MutableBitmap>, ) -> PolarsResult<Self>

Create a MutableStructArray out of low-end APIs.

§Errors

This function errors iff:

  • dtype is not ArrowDataType::Struct
  • The inner types of dtype are not equal to those of values
  • validity is not None and its length is different from the values’s length
Source

pub fn into_inner( self, ) -> (ArrowDataType, usize, Vec<Box<dyn MutableArray>>, Option<MutableBitmap>)

Extract the low-end APIs from the MutableStructArray.

Source

pub fn values(&self) -> &Vec<Box<dyn MutableArray>>

The values

Source§

impl MutableStructArray

Source

pub fn reserve(&mut self, additional: usize)

Reserves additional entries.

Source

pub fn push(&mut self, valid: bool)

Call this once for each “row” of children you push.

Source

pub fn into_arc(self) -> Arc<dyn Array>

Converts itself into an Array.

Source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the MutableStructArray to fit its current length.

Trait Implementations§

Source§

impl Debug for MutableStructArray

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<MutableStructArray> for StructArray

Source§

fn from(other: MutableStructArray) -> Self

Converts to this type from the input type.
Source§

impl MutableArray for MutableStructArray

Source§

fn len(&self) -> usize

The length of the array.
Source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
Source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
Source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
Source§

fn dtype(&self) -> &ArrowDataType

The ArrowDataType of the array.
Source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
Source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
Source§

fn push_null(&mut self)

Adds a new null element to the array.
Source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
Source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
Source§

fn is_empty(&self) -> bool

Whether the array is empty.
Source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.