Trait tupletools::Prepend

source ·
pub trait Prepend<T> {
    type Output;

    // Required method
    fn prepend(self, other: T) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn prepend(self, other: T) -> Self::Output

Implementations on Foreign Types§

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7, T8)

source§

impl<T1, T2, T3, T4, T5, T6, T7, T> Prepend<T> for (T1, T2, T3, T4, T5, T6, T7)

source§

impl<T1, T2, T3, T4, T5, T6, T> Prepend<T> for (T1, T2, T3, T4, T5, T6)

source§

impl<T1, T2, T3, T4, T5, T> Prepend<T> for (T1, T2, T3, T4, T5)

§

type Output = (T, T1, T2, T3, T4, T5)

source§

fn prepend(self, other: T) -> Self::Output

source§

impl<T1, T2, T3, T4, T> Prepend<T> for (T1, T2, T3, T4)

§

type Output = (T, T1, T2, T3, T4)

source§

fn prepend(self, other: T) -> Self::Output

source§

impl<T1, T2, T3, T> Prepend<T> for (T1, T2, T3)

§

type Output = (T, T1, T2, T3)

source§

fn prepend(self, other: T) -> Self::Output

source§

impl<T1, T2, T> Prepend<T> for (T1, T2)

§

type Output = (T, T1, T2)

source§

fn prepend(self, other: T) -> Self::Output

source§

impl<T1, T> Prepend<T> for (T1,)

§

type Output = (T, T1)

source§

fn prepend(self, other: T) -> Self::Output

Implementors§