pub trait PiecewiseSequenceArraySlotsExt: TypedArrayRef<PiecewiseSequence> {
// Provided methods
fn starts(&self) -> &ArrayRef { ... }
fn lengths(&self) -> &ArrayRef { ... }
fn multipliers(&self) -> &ArrayRef { ... }
fn slots_view(&self) -> PiecewiseSequenceSlotsView<'_> { ... }
}Expand description
Typed array accessors for PiecewiseSequence.
Provided Methods§
fn starts(&self) -> &ArrayRef
fn lengths(&self) -> &ArrayRef
fn multipliers(&self) -> &ArrayRef
Sourcefn slots_view(&self) -> PiecewiseSequenceSlotsView<'_>
fn slots_view(&self) -> PiecewiseSequenceSlotsView<'_>
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".