pub trait MapArraySlotsExt: TypedArrayRef<Map> {
// Provided methods
fn entries(&self) -> &ArrayRef { ... }
fn slots_view(&self) -> MapSlotsView<'_> { ... }
}Expand description
Typed array accessors for Map.
Provided Methods§
fn entries(&self) -> &ArrayRef
Sourcefn slots_view(&self) -> MapSlotsView<'_>
fn slots_view(&self) -> MapSlotsView<'_>
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".