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