arrow::array

Struct GenericListViewArray

pub struct GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,
{ data_type: DataType, nulls: Option<NullBuffer>, values: Arc<dyn Array>, value_offsets: ScalarBuffer<OffsetSize>, value_sizes: ScalarBuffer<OffsetSize>, }
Expand description

Different from crate::GenericListArray as it stores both an offset and length meaning that take / filter operations can be implemented without copying the underlying data.

Fields§

§data_type: DataType§nulls: Option<NullBuffer>§values: Arc<dyn Array>§value_offsets: ScalarBuffer<OffsetSize>§value_sizes: ScalarBuffer<OffsetSize>

Implementations§

§

impl<OffsetSize> GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

pub const DATA_TYPE_CONSTRUCTOR: fn(_: Arc<Field>) -> DataType = _

The data type constructor of listview array. The input is the schema of the child array and the output is the DataType, ListView or LargeListView.

pub fn try_new( field: Arc<Field>, offsets: ScalarBuffer<OffsetSize>, sizes: ScalarBuffer<OffsetSize>, values: Arc<dyn Array>, nulls: Option<NullBuffer>, ) -> Result<GenericListViewArray<OffsetSize>, ArrowError>

Create a new GenericListViewArray from the provided parts

§Errors

Errors if

  • offsets.len() != sizes.len()
  • offsets.len() != nulls.len()
  • offsets[i] > values.len()
  • !field.is_nullable() && values.is_nullable()
  • field.data_type() != values.data_type()
  • 0 <= offsets[i] <= length of the child array
  • 0 <= offsets[i] + size[i] <= length of the child array

pub fn new( field: Arc<Field>, offsets: ScalarBuffer<OffsetSize>, sizes: ScalarBuffer<OffsetSize>, values: Arc<dyn Array>, nulls: Option<NullBuffer>, ) -> GenericListViewArray<OffsetSize>

Create a new GenericListViewArray from the provided parts

§Panics

Panics if Self::try_new returns an error

pub fn new_null( field: Arc<Field>, len: usize, ) -> GenericListViewArray<OffsetSize>

Create a new GenericListViewArray of length len where all values are null

pub fn into_parts( self, ) -> (Arc<Field>, ScalarBuffer<OffsetSize>, ScalarBuffer<OffsetSize>, Arc<dyn Array>, Option<NullBuffer>)

Deconstruct this array into its constituent parts

pub fn offsets(&self) -> &ScalarBuffer<OffsetSize>

Returns a reference to the offsets of this list

Unlike Self::value_offsets this returns the ScalarBuffer allowing for zero-copy cloning

pub fn values(&self) -> &Arc<dyn Array>

Returns a reference to the values of this list

pub fn sizes(&self) -> &ScalarBuffer<OffsetSize>

Returns a reference to the sizes of this list

Unlike Self::value_sizes this returns the ScalarBuffer allowing for zero-copy cloning

pub fn value_type(&self) -> DataType

Returns a clone of the value type of this list.

pub unsafe fn value_unchecked(&self, i: usize) -> Arc<dyn Array>

Returns ith value of this list view array.

§Safety

Caller must ensure that the index is within the array bounds

pub fn value(&self, i: usize) -> Arc<dyn Array>

Returns ith value of this list view array.

§Panics

Panics if the index is out of bounds

pub fn value_offsets(&self) -> &[OffsetSize]

Returns the offset values in the offsets buffer

pub fn value_sizes(&self) -> &[OffsetSize]

Returns the sizes values in the offsets buffer

pub fn value_size(&self, i: usize) -> OffsetSize

Returns the size for value at index i.

pub fn value_offset(&self, i: usize) -> OffsetSize

Returns the offset for value at index i.

pub fn iter(&self) -> ArrayIter<&GenericListViewArray<OffsetSize>>

Constructs a new iterator

pub fn slice( &self, offset: usize, length: usize, ) -> GenericListViewArray<OffsetSize>

Returns a zero-copy slice of this array with the indicated offset and length.

Trait Implementations§

§

impl<OffsetSize> Array for GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

fn as_any(&self) -> &(dyn Any + 'static)

Returns the array as Any so that it can be downcasted to a specific implementation. Read more
§

fn to_data(&self) -> ArrayData

Returns the underlying data of this array
§

fn into_data(self) -> ArrayData

Returns the underlying data of this array Read more
§

fn data_type(&self) -> &DataType

Returns a reference to the DataType of this array. Read more
§

fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array>

Returns a zero-copy slice of this array with the indicated offset and length. Read more
§

fn len(&self) -> usize

Returns the length (i.e., number of elements) of this array. Read more
§

fn is_empty(&self) -> bool

Returns whether this array is empty. Read more
§

fn offset(&self) -> usize

Returns the offset into the underlying data used by this array(-slice). Note that the underlying data can be shared by many arrays. This defaults to 0. Read more
§

fn nulls(&self) -> Option<&NullBuffer>

Returns the null buffer of this array if any. Read more
§

fn get_buffer_memory_size(&self) -> usize

Returns the total number of bytes of memory pointed to by this array. The buffers store bytes in the Arrow memory format, and include the data as well as the validity map. Note that this does not always correspond to the exact memory usage of an array, since multiple arrays can share the same buffers or slices thereof.
§

fn get_array_memory_size(&self) -> usize

Returns the total number of bytes of memory occupied physically by this array. This value will always be greater than returned by get_buffer_memory_size() and includes the overhead of the data structures that contain the pointers to the various buffers.
§

fn logical_nulls(&self) -> Option<NullBuffer>

Returns a potentially computed NullBuffer that represents the logical null values of this array, if any. Read more
§

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

Returns whether the element at index is null according to Array::nulls Read more
§

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

Returns whether the element at index is not null, the opposite of Self::is_null. Read more
§

fn null_count(&self) -> usize

Returns the total number of physical null values in this array. Read more
§

fn logical_null_count(&self) -> usize

Returns the total number of logical null values in this array. Read more
§

fn is_nullable(&self) -> bool

Returns false if the array is guaranteed to not contain any logical nulls Read more
§

impl<OffsetSize> ArrayAccessor for &GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

type Item = Arc<dyn Array>

The Arrow type of the element being accessed.
§

fn value( &self, index: usize, ) -> <&GenericListViewArray<OffsetSize> as ArrayAccessor>::Item

Returns the element at index i Read more
§

unsafe fn value_unchecked( &self, index: usize, ) -> <&GenericListViewArray<OffsetSize> as ArrayAccessor>::Item

Returns the element at index i Read more
§

impl<OffsetSize> Clone for GenericListViewArray<OffsetSize>
where OffsetSize: Clone + OffsetSizeTrait,

§

fn clone(&self) -> GenericListViewArray<OffsetSize>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<OffsetSize> Debug for GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

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

Formats the value using the given formatter. Read more
§

impl<OffsetSize> From<ArrayData> for GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

fn from(data: ArrayData) -> GenericListViewArray<OffsetSize>

Converts to this type from the input type.
§

impl<OffsetSize> From<FixedSizeListArray> for GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

fn from(value: FixedSizeListArray) -> GenericListViewArray<OffsetSize>

Converts to this type from the input type.
§

impl<OffsetSize> From<GenericListViewArray<OffsetSize>> for ArrayData
where OffsetSize: OffsetSizeTrait,

§

fn from(array: GenericListViewArray<OffsetSize>) -> ArrayData

Converts to this type from the input type.
§

impl<OffsetSize> PartialEq for GenericListViewArray<OffsetSize>
where OffsetSize: OffsetSizeTrait,

§

fn eq(&self, other: &GenericListViewArray<OffsetSize>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<OffsetSize> Freeze for GenericListViewArray<OffsetSize>

§

impl<OffsetSize> !RefUnwindSafe for GenericListViewArray<OffsetSize>

§

impl<OffsetSize> Send for GenericListViewArray<OffsetSize>

§

impl<OffsetSize> Sync for GenericListViewArray<OffsetSize>

§

impl<OffsetSize> Unpin for GenericListViewArray<OffsetSize>
where OffsetSize: Unpin,

§

impl<OffsetSize> !UnwindSafe for GenericListViewArray<OffsetSize>

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> Datum for T
where T: Array,

§

fn get(&self) -> (&dyn Array, bool)

Returns the value for this Datum and a boolean indicating if the value is scalar
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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Ungil for T
where T: Send,