pub trait TupleAppend<T> {
type Appended;
// Required method
fn append(self, other: T) -> Self::Appended;
}Expand description
Allows to append an element at the end of a tuple.
The generic type parameter T represents the type to be appended. It may
be removed in the future, when GAT reach stable rust.