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