pub trait PrimitiveElement {
    fn get(list_reader: &ListReader<'_>, index: ElementCount32) -> Self;
    fn get_from_builder(
        list_builder: &ListBuilder<'_>,
        index: ElementCount32
    ) -> Self; fn set(list_builder: &ListBuilder<'_>, index: ElementCount32, value: Self); fn element_size() -> ElementSize; }
Expand description

An element that can be stored in a primitive_list.

Required Methods§

Gets the element at position index. Bounds checking is not performed.

Gets the element at position index. Bounds checking is not performed.

Sets to element at position index to be value. Bounds checking is not performed.

Returns the size of an individual element.

Implementations on Foreign Types§

Implementors§