pub struct StructArray { /* private fields */ }
Expand description

A StructArray is a nested Array with an optional validity representing multiple Array with the same number of rows.

Example

use arrow2::array::*;
use arrow2::datatypes::*;
let boolean = BooleanArray::from_slice(&[false, false, true, true]).boxed();
let int = Int32Array::from_slice(&[42, 28, 19, 31]).boxed();

let fields = vec![
    Field::new("b", DataType::Boolean, false),
    Field::new("c", DataType::Int32, false),
];

let array = StructArray::new(DataType::Struct(fields), vec![boolean, int], None);

Implementations

Returns an iterator of Option<Box<dyn Array>>

Returns an iterator of Box<dyn Array>

Returns a new StructArray.

Errors

This function errors iff:

  • data_type’s physical type is not crate::datatypes::PhysicalType::Struct.
  • the children of data_type are empty
  • the values’s len is different from children’s length
  • any of the values’s data type is different from its corresponding children’ data type
  • any element of values has a different length than the first element
  • the validity’s length is not equal to the length of the first element

Returns a new StructArray

Panics

This function panics iff:

  • data_type’s physical type is not crate::datatypes::PhysicalType::Struct.
  • the children of data_type are empty
  • the values’s len is different from children’s length
  • any of the values’s data type is different from its corresponding children’ data type
  • any element of values has a different length than the first element
  • the validity’s length is not equal to the length of the first element

Alias for new

Creates an empty StructArray.

Creates a null StructArray of length length.

Deconstructs the StructArray into its individual components.

Creates a new StructArray that is a slice of self.

Panics
  • offset + length must be smaller than self.len().
Implementation

This operation is O(F) where F is the number of fields.

Creates a new StructArray that is a slice of self.

Implementation

This operation is O(F) where F is the number of fields.

Safety

The caller must ensure that offset + length <= self.len().

Returns this StructArray with a new validity.

Panics

This function panics iff validity.len() != self.len().

Sets the validity of this StructArray.

Panics

This function panics iff validity.len() != self.len().

Boxes self into a Box<dyn Array>.

Boxes self into a std::sync::Arc<dyn Array>.

The optional validity.

Returns the values of this StructArray.

Returns the fields of this StructArray.

Returns the fields the DataType::Struct.

Trait Implementations

Converts itself to a reference of Any, which enables downcasting to concrete types.

Converts itself to a mutable reference of Any, which enables mutable downcasting to concrete types.

The length of the Array. Every array has a length corresponding to the number of elements (slots). Read more

The DataType of the Array. In combination with Array::as_any, this can be used to downcast trait objects (dyn Array) to concrete arrays. Read more

The validity of the Array: every array has an optional Bitmap that, when available specifies whether the array slot is valid or not (null). When the validity is None, all slots are valid. Read more

Slices the Array, returning a new Box<dyn Array>. Read more

Slices the Array, returning a new Box<dyn Array>. Read more

Clones this Array with a new new assigned bitmap. Read more

Clone a &dyn Array to an owned Box<dyn Array>.

whether the array is empty

The number of null slots on this Array. Read more

Returns whether slot i is null. Read more

Returns whether slot i is valid. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.