TupleAppend

Trait TupleAppend 

Source
pub trait TupleAppend<Init, Last> { }
Available on crate feature append only.
Expand description

A tuple and an element that are usable with append().

See also: append(), TupleAppend.

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<Last> TupleAppend<(), Last> for ((), Last)

Source§

impl<Last, I1> TupleAppend<(I1,), Last> for ((I1,), Last)

Source§

impl<Last, I1, I2> TupleAppend<(I1, I2), Last> for ((I1, I2), Last)

Source§

impl<Last, I1, I2, I3> TupleAppend<(I1, I2, I3), Last> for ((I1, I2, I3), Last)

Source§

impl<Last, I1, I2, I3, I4> TupleAppend<(I1, I2, I3, I4), Last> for ((I1, I2, I3, I4), Last)

Source§

impl<Last, I1, I2, I3, I4, I5> TupleAppend<(I1, I2, I3, I4, I5), Last> for ((I1, I2, I3, I4, I5), Last)

Source§

impl<Last, I1, I2, I3, I4, I5, I6> TupleAppend<(I1, I2, I3, I4, I5, I6), Last> for ((I1, I2, I3, I4, I5, I6), Last)

Source§

impl<Last, I1, I2, I3, I4, I5, I6, I7> TupleAppend<(I1, I2, I3, I4, I5, I6, I7), Last> for ((I1, I2, I3, I4, I5, I6, I7), Last)

Source§

impl<Last, I1, I2, I3, I4, I5, I6, I7, I8> TupleAppend<(I1, I2, I3, I4, I5, I6, I7, I8), Last> for ((I1, I2, I3, I4, I5, I6, I7, I8), Last)

Implementors§