TupleCombinations6

Trait TupleCombinations6 

Source
pub trait TupleCombinations6 {
    type Output;

    // Required method
    fn combinations_6(self) -> Self::Output;
}
Expand description

Combinations by 6

Required Associated Types§

Required Methods§

Source

fn combinations_6(self) -> Self::Output

Combinations by 6

Implementations on Foreign Types§

Source§

impl<T0, T1, T2, T3, T4, T5, T6> TupleCombinations6 for (T0, T1, T2, T3, T4, T5, T6)
where T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone, T5: Clone, T6: Clone,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> TupleCombinations6 for (T0, T1, T2, T3, T4, T5, T6, T7)
where T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone, T5: Clone, T6: Clone, T7: Clone,

Implementors§