pub trait DictArraySlotsExt: TypedArrayRef<Dict> {
// Provided methods
fn codes(&self) -> &ArrayRef { ... }
fn values(&self) -> &ArrayRef { ... }
fn slots_view(&self) -> DictSlotsView<'_> { ... }
}Expand description
Typed array accessors for Dict.
Provided Methods§
fn codes(&self) -> &ArrayRef
fn values(&self) -> &ArrayRef
Sourcefn slots_view(&self) -> DictSlotsView<'_>
fn slots_view(&self) -> DictSlotsView<'_>
Returns a borrowed view of all slots.