CursorArray

Trait CursorArray 

Source
pub trait CursorArray: Array + 'static {
    type Values: CursorValues;

    // Required method
    fn values(&self) -> Self::Values;
}
Expand description

An [Array] that can be converted into CursorValues

Required Associated Types§

Required Methods§

Source

fn values(&self) -> Self::Values

Implementations on Foreign Types§

Source§

impl CursorArray for StringViewArray

Source§

type Values = GenericByteViewArray<StringViewType>

Source§

fn values(&self) -> Self

Source§

impl<T: ArrowPrimitiveType> CursorArray for PrimitiveArray<T>

Source§

type Values = PrimitiveValues<<T as ArrowPrimitiveType>::Native>

Source§

fn values(&self) -> Self::Values

Source§

impl<T: ByteArrayType> CursorArray for GenericByteArray<T>

Source§

type Values = ByteArrayValues<<T as ByteArrayType>::Offset>

Source§

fn values(&self) -> Self::Values

Implementors§