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