Skip to main content

TupleMove9

Trait TupleMove9 

Source
pub trait TupleMove9<C0, C1, C2, C3, C4, C5, C6, C7, C8>:
    IntoField<I0, Ty = C0>
    + IntoField<I1, Ty = C1>
    + IntoField<I2, Ty = C2>
    + IntoField<I3, Ty = C3>
    + IntoField<I4, Ty = C4>
    + IntoField<I5, Ty = C5>
    + IntoField<I6, Ty = C6>
    + IntoField<I7, Ty = C7>
    + IntoField<I8, Ty = C8> { }
Expand description

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

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<C0, C1, C2, C3, C4, C5, C6, C7, C8, This> TupleMove9<C0, C1, C2, C3, C4, C5, C6, C7, C8> for This
where This: IntoField<I0, Ty = C0> + IntoField<I1, Ty = C1> + IntoField<I2, Ty = C2> + IntoField<I3, Ty = C3> + IntoField<I4, Ty = C4> + IntoField<I5, Ty = C5> + IntoField<I6, Ty = C6> + IntoField<I7, Ty = C7> + IntoField<I8, Ty = C8>,