pub trait ArrowGetItem {
    type Item;

    fn get(&self, item: usize) -> Option<Self::Item>;
    unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>;
}

Required Associated Types

Required Methods

Safety

Get item. It is the callers responsibility that the item < self.len()

Implementations on Foreign Types

Implementors