Skip to main content

Tuple6

Trait Tuple6 

Source
pub trait Tuple6: Tuple {
    type Item0;
    type Item1;
    type Item2;
    type Item3;
    type Item4;
    type Item5;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T0, T1, T2, T3, T4, T5> Tuple6 for (T0, T1, T2, T3, T4, T5)

Source§

type Item0 = T0

Source§

type Item1 = T1

Source§

type Item2 = T2

Source§

type Item3 = T3

Source§

type Item4 = T4

Source§

type Item5 = T5

Implementors§