Trait tuple_utils::Merge[][src]

pub trait Merge<T> {
    type Output;
    fn merge(self, other: T) -> Self::Output;
}
Expand description

Helper trait that allow for merging of tuples

Associated Types

Required methods

merge LHS with RHS returning a new tuple that contains the elements of both tuples ordering is preserved such that LHS elements come before RHS elements.

Implementations on Foreign Types

Implementors