Trait tuple::OpJoin [] [src]

pub trait OpJoin<RHS> {
    type Output;
    fn join(self, rhs: RHS) -> Self::Output;
}

Allows to join/concatenate two tuples

Associated Types

Required Methods

Implementors