[][src]Struct arrow::array_data::ArrayData

pub struct ArrayData { /* fields omitted */ }

An generic representation of Arrow array data which encapsulates common attributes and operations for Arrow array. Specific operations for different arrays types (e.g., primitive, list, struct) are implemented in Array.

Methods

impl ArrayData
[src]

Returns a builder to construct a ArrayData instance.

Returns a reference to the data type of this array data

Returns a slice of buffers for this array data

Returns a slice of children data arrays

Returns whether the element at index i is null

Returns a reference to the null bitmap of this array data

Returns whether the element at index i is not null

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

Returns the offset of this array

Returns the total number of nulls in this array

Trait Implementations

impl PartialEq<ArrayData> for ArrayData
[src]

impl Debug for ArrayData
[src]

Auto Trait Implementations

impl Send for ArrayData

impl Sync for ArrayData

Blanket Implementations

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.