pub trait CombinConcat<T> {
type Out;
// Required method
fn concat(self, target: T) -> Self::Out;
}Expand description
Concat Tuples
(a, b).concat((c, d)) -> (a, b, c, d)
pub trait CombinConcat<T> {
type Out;
// Required method
fn concat(self, target: T) -> Self::Out;
}Concat Tuples
(a, b).concat((c, d)) -> (a, b, c, d)