pub trait TupleCombinations4 {
type Output;
// Required method
fn combinations_4(self) -> Self::Output;
}Expand description
Combinations by 4
Required Associated Types§
Required Methods§
Sourcefn combinations_4(self) -> Self::Output
fn combinations_4(self) -> Self::Output
Combinations by 4
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".