Trait Tuple12

Source
pub trait Tuple12<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11>:
    IntoFieldMut<I0, Ty = C0>
    + IntoFieldMut<I1, Ty = C1>
    + IntoFieldMut<I2, Ty = C2>
    + IntoFieldMut<I3, Ty = C3>
    + IntoFieldMut<I4, Ty = C4>
    + IntoFieldMut<I5, Ty = C5>
    + IntoFieldMut<I6, Ty = C6>
    + IntoFieldMut<I7, Ty = C7>
    + IntoFieldMut<I8, Ty = C8>
    + IntoFieldMut<I9, Ty = C9>
    + IntoFieldMut<I10, Ty = C10>
    + IntoFieldMut<I11, Ty = C11> { }
Expand description

A structural alias for a tuple of the size. With shared,mutable,and by value access to the fields.

Implementors§

Source§

impl<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, This> Tuple12<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11> for This
where This: IntoFieldMut<I0, Ty = C0> + IntoFieldMut<I1, Ty = C1> + IntoFieldMut<I2, Ty = C2> + IntoFieldMut<I3, Ty = C3> + IntoFieldMut<I4, Ty = C4> + IntoFieldMut<I5, Ty = C5> + IntoFieldMut<I6, Ty = C6> + IntoFieldMut<I7, Ty = C7> + IntoFieldMut<I8, Ty = C8> + IntoFieldMut<I9, Ty = C9> + IntoFieldMut<I10, Ty = C10> + IntoFieldMut<I11, Ty = C11>,