pub trait OffsetSizeTrait: ArrowNativeType + AddAssign + Integer {
    const IS_LARGE: bool;
    const PREFIX: &'static str;
}
Expand description

trait declaring an offset size, relevant for i32 vs i64 array types.

Required Associated Constants§

True for 64 bit offset size and false for 32 bit offset size

Prefix for the offset size

Implementations on Foreign Types§

Implementors§