usesuper::Index;/// Sealed trait describing the subset (`i32` and `i64`) of [`Index`] that can be used
/// as offsets of variable-length Arrow arrays.
pubtraitOffset: super::private::Sealed + Index {/// Whether it is `i32` (false) or `i64` (true).
constIS_LARGE:bool;}implOffset fori32{constIS_LARGE:bool=false;}implOffset fori64{constIS_LARGE:bool=true;}