pub trait Offset: Sealed + Index {
    const IS_LARGE: bool;
}
Expand description

Sealed trait describing the subset (i32 and i64) of Index that can be used as offsets of variable-length Arrow arrays.

Required Associated Constants§

source

const IS_LARGE: bool

Whether it is i32 (false) or i64 (true).

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Offset for i32

source§

const IS_LARGE: bool = false

source§

impl Offset for i64

source§

const IS_LARGE: bool = true

Implementors§