TupleJoin

Trait TupleJoin 

pub trait TupleJoin<E> {
    type Joined;

    // Required method
    fn join(self, extension: E) -> Self::Joined;
}
Available on crate features tuple and tuple-ops only.

Required Associated Types§

type Joined

Required Methods§

fn join(self, extension: E) -> Self::Joined

Implementors§

§

impl<E, T> TupleJoin<E> for T

§

impl<T> TupleJoin<()> for T

§

type Joined = T