Trait tuple_utils::Merge

source ·
pub trait Merge<T> {
    type Output;

    fn merge(self, _: T) -> Self::Output;
}
Expand description

Helper trait that allow for merging of tuples

Required 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