[][src]Struct arrow::array::FixedSizeListArray

pub struct FixedSizeListArray { /* fields omitted */ }

A list array where each element is a fixed-size sequence of values with the same type.

Implementations

impl FixedSizeListArray[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) -> i32[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) -> i32[src]

Returns the length for value at index i.

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

Trait Implementations

impl Array for FixedSizeListArray[src]

impl ArrayEqual for FixedSizeListArray[src]

impl Debug for FixedSizeListArray[src]

impl From<Arc<ArrayData>> for FixedSizeListArray[src]

Constructs a FixedSizeListArray from an array data reference.

impl From<FixedSizeListArray> for FixedSizeBinaryArray[src]

Creates a FixedSizeBinaryArray from FixedSizeList<u8> array

impl JsonEqual for FixedSizeListArray[src]

impl ListArrayOps for FixedSizeListArray[src]

impl PartialEq<FixedSizeListArray> for Value[src]

impl PartialEq<Value> for FixedSizeListArray[src]

Auto Trait Implementations

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>,