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