pub trait JoinVec<T, U> {
    type Output;

    fn join(self, u: U) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors