pub trait SparseArraySlotsExt: TypedArrayRef<Sparse> {
// Provided methods
fn patch_indices(&self) -> &ArrayRef { ... }
fn patch_values(&self) -> &ArrayRef { ... }
fn patch_chunk_offsets(&self) -> Option<&ArrayRef> { ... }
fn slots_view(&self) -> SparseSlotsView<'_> { ... }
}Expand description
Typed array accessors for Sparse.
Provided Methods§
fn patch_indices(&self) -> &ArrayRef
fn patch_values(&self) -> &ArrayRef
fn patch_chunk_offsets(&self) -> Option<&ArrayRef>
Sourcefn slots_view(&self) -> SparseSlotsView<'_>
fn slots_view(&self) -> SparseSlotsView<'_>
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".