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

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

Required Associated Types

Required Methods

Implementors