Skip to main content

Join

Trait Join 

Source
pub trait Join<Rhs> {
    type Output;

    // Required method
    fn join(self, rhs: Rhs) -> Self::Output;
}
Expand description

The regressive product.

Required Associated Types§

Required Methods§

Source

fn join(self, rhs: Rhs) -> Self::Output

Implementors§