[][src]Struct arrow::array::LargeStringArray

pub struct LargeStringArray { /* fields omitted */ }

Implementations

impl LargeStringArray[src]

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

Returns the offset for the element at index i.

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

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

Returns the length for the element at index i.

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

pub fn value_offsets(&self) -> Buffer[src]

Returns a clone of the value offset buffer

pub fn value_data(&self) -> Buffer[src]

Returns a clone of the value data buffer

impl LargeStringArray[src]

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

Returns the element at index i as a string slice.

pub fn builder(capacity: usize) -> LargeStringBuilder[src]

Trait Implementations

impl Array for LargeStringArray[src]

impl ArrayEqual for LargeStringArray[src]

impl Debug for LargeStringArray[src]

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

impl From<LargeListArray> for LargeStringArray[src]

Creates a LargeStringArray from LargeList<u8> array

impl<'a> From<Vec<&'a str>> for LargeStringArray[src]

impl JsonEqual for LargeStringArray[src]

impl LargeListArrayOps for LargeStringArray[src]

impl PartialEq<LargeStringArray> for Value[src]

impl PartialEq<Value> for LargeStringArray[src]

impl<'a> TryFrom<Vec<Option<&'a str>>> for LargeStringArray[src]

type Error = ArrowError

The type returned in the event of a conversion error.

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