[][src]Struct arrow::array::LargeBinaryArray

pub struct LargeBinaryArray { /* fields omitted */ }

Implementations

impl LargeBinaryArray[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 LargeBinaryArray[src]

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

Returns the element at index i as a byte slice.

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

Returns a new large binary array builder

Trait Implementations

impl Array for LargeBinaryArray[src]

impl ArrayEqual for LargeBinaryArray[src]

impl Debug for LargeBinaryArray[src]

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

impl From<LargeListArray> for LargeBinaryArray[src]

Creates a LargeBinaryArray from LargeList<u8> array

impl<'_> From<Vec<&'_ [u8]>> for LargeBinaryArray[src]

impl JsonEqual for LargeBinaryArray[src]

impl LargeListArrayOps for LargeBinaryArray[src]

impl PartialEq<LargeBinaryArray> for Value[src]

impl PartialEq<Value> for LargeBinaryArray[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>,