TupleConcatMany

Trait TupleConcatMany 

Source
pub trait TupleConcatMany<Tpls> { }
Available on crate feature concat-many only.
Expand description

A tuple of tuples that is usable with concat_many().

See also: concat_many, TupleConcatMany.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TupleConcatMany<()> for ()

Source§

impl<I1> TupleConcatMany<(I1,)> for (I1,)

Source§

impl<I1, I2, I3, I4, I5, I6, I7, I8, Z1, Z2> TupleConcatMany<(I1, I2, I3, I4, I5, I6, I7, I8, Z1, Z2)> for (I1, I2, I3, I4, I5, I6, I7, I8, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, I4, I5, I6, I7, I8, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, I4, I5, I6, I7, I8, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, I3, I4, I5, I6, I7, Z1, Z2> TupleConcatMany<(I1, I2, I3, I4, I5, I6, I7, Z1, Z2)> for (I1, I2, I3, I4, I5, I6, I7, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, I4, I5, I6, I7, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, I4, I5, I6, I7, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, I3, I4, I5, I6, Z1, Z2> TupleConcatMany<(I1, I2, I3, I4, I5, I6, Z1, Z2)> for (I1, I2, I3, I4, I5, I6, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, I4, I5, I6, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, I4, I5, I6, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, I3, I4, I5, Z1, Z2> TupleConcatMany<(I1, I2, I3, I4, I5, Z1, Z2)> for (I1, I2, I3, I4, I5, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, I4, I5, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, I4, I5, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, I3, I4, Z1, Z2> TupleConcatMany<(I1, I2, I3, I4, Z1, Z2)> for (I1, I2, I3, I4, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, I4, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, I4, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, I3, Z1, Z2> TupleConcatMany<(I1, I2, I3, Z1, Z2)> for (I1, I2, I3, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, I3, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, I3, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, I2, Z1, Z2> TupleConcatMany<(I1, I2, Z1, Z2)> for (I1, I2, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, I2, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, I2, ConcatTuples<Z1, Z2>)>,

Source§

impl<I1, Z1, Z2> TupleConcatMany<(I1, Z1, Z2)> for (I1, Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>, (I1, ConcatTuples<Z1, Z2>): TupleConcatMany<(I1, ConcatTuples<Z1, Z2>)>,

Source§

impl<Z1, Z2> TupleConcatMany<(Z1, Z2)> for (Z1, Z2)
where (Z1, Z2): TupleConcat<Z1, Z2>,

Implementors§