[][src]Struct arrow::array::GenericListArray

pub struct GenericListArray<OffsetSize> { /* fields omitted */ }

Implementations

impl<OffsetSize: OffsetSizeTrait> GenericListArray<OffsetSize>[src]

pub fn values(&self) -> ArrayRef[src]

Returns a reference to the values of this list.

pub fn value_type(&self) -> DataType[src]

Returns a clone of the value type of this list.

pub fn value(&self, i: usize) -> ArrayRef[src]

Returns ith value of this list array.

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

Returns the offset for value at index i.

Note this doesn't do any bound checking, for performance reason.

pub fn value_length(&self, i: usize) -> OffsetSize[src]

Returns the length for value at index i.

Note this doesn't do any bound checking, for performance reason.

Trait Implementations

impl<OffsetSize: 'static + OffsetSizeTrait> Array for GenericListArray<OffsetSize>[src]

fn get_buffer_memory_size(&self) -> usize[src]

Returns the total number of bytes of memory occupied by the buffers owned by this ListArray.

fn get_array_memory_size(&self) -> usize[src]

Returns the total number of bytes of memory occupied physically by this ListArray.

impl<OffsetSize: OffsetSizeTrait> ArrayEqual for GenericListArray<OffsetSize>[src]

impl<OffsetSize: OffsetSizeTrait> Debug for GenericListArray<OffsetSize>[src]

impl<OffsetSize: OffsetSizeTrait> From<Arc<ArrayData>> for GenericListArray<OffsetSize>[src]

impl From<GenericListArray<i32>> for BinaryArray[src]

impl From<GenericListArray<i32>> for StringArray[src]

impl From<GenericListArray<i64>> for LargeBinaryArray[src]

impl From<GenericListArray<i64>> for LargeStringArray[src]

impl<OffsetSize: OffsetSizeTrait> JsonEqual for GenericListArray<OffsetSize>[src]

impl<OffsetSize: OffsetSizeTrait> PartialEq<GenericListArray<OffsetSize>> for Value[src]

impl<OffsetSize: OffsetSizeTrait> PartialEq<Value> for GenericListArray<OffsetSize>[src]

Auto Trait Implementations

impl<OffsetSize> !RefUnwindSafe for GenericListArray<OffsetSize>

impl<OffsetSize> Send for GenericListArray<OffsetSize>

impl<OffsetSize> Sync for GenericListArray<OffsetSize>

impl<OffsetSize> Unpin for GenericListArray<OffsetSize>

impl<OffsetSize> !UnwindSafe for GenericListArray<OffsetSize>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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