pub trait Merge<T> {
type Output;
// Required method
fn merge(self, other: T) -> Self::Output;
}
Expand description
Helper trait that allow for merging of tuples
pub trait Merge<T> {
type Output;
// Required method
fn merge(self, other: T) -> Self::Output;
}
Helper trait that allow for merging of tuples