pub trait RLEArraySlotsExt: TypedArrayRef<RLE> {
// Provided methods
fn values(&self) -> &ArrayRef { ... }
fn indices(&self) -> &ArrayRef { ... }
fn values_idx_offsets(&self) -> &ArrayRef { ... }
fn slots_view(&self) -> RLESlotsView<'_> { ... }
}Expand description
Typed array accessors for RLE.
Provided Methods§
fn values(&self) -> &ArrayRef
fn indices(&self) -> &ArrayRef
fn values_idx_offsets(&self) -> &ArrayRef
Sourcefn slots_view(&self) -> RLESlotsView<'_>
fn slots_view(&self) -> RLESlotsView<'_>
Returns a borrowed view of all slots.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".