pub trait InterleavePivotSwap<const I: usize>where
Self: Sized,{
type InterleavePivotSwapOutput;
// Required method
fn interleaved_pivot_swap(self) -> Self::InterleavePivotSwapOutput;
}Required Associated Types§
Required Methods§
fn interleaved_pivot_swap(self) -> Self::InterleavePivotSwapOutput
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".