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