Trait tuple::OpReverse

source ·
pub trait OpReverse {
    type Output;

    // Required method
    fn reverse(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn reverse(self) -> Self::Output

reverse the elements.

Implementations on Foreign Types§

source§

impl<A> OpReverse for (A,)

§

type Output = A

source§

fn reverse(self) -> Self::Output

source§

impl<A, B> OpReverse for (A, B)

§

type Output = (B, A)

source§

fn reverse(self) -> Self::Output

source§

impl<A, B, C> OpReverse for (A, B, C)

§

type Output = (C, B, A)

source§

fn reverse(self) -> Self::Output

source§

impl<A, B, C, D> OpReverse for (A, B, C, D)

source§

impl<A, B, C, D, E> OpReverse for (A, B, C, D, E)

source§

impl<A, B, C, D, E, F> OpReverse for (A, B, C, D, E, F)

source§

impl<A, B, C, D, E, F, G> OpReverse for (A, B, C, D, E, F, G)

source§

impl<A, B, C, D, E, F, G, H> OpReverse for (A, B, C, D, E, F, G, H)

source§

impl<A, B, C, D, E, F, G, H, I> OpReverse for (A, B, C, D, E, F, G, H, I)

source§

impl<A, B, C, D, E, F, G, H, I, J> OpReverse for (A, B, C, D, E, F, G, H, I, J)

source§

impl<A, B, C, D, E, F, G, H, I, J, K> OpReverse for (A, B, C, D, E, F, G, H, I, J, K)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> OpReverse for (A, B, C, D, E, F, G, H, I, J, K, L)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> OpReverse for (A, B, C, D, E, F, G, H, I, J, K, L, M)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> OpReverse for (A, B, C, D, E, F, G, H, I, J, K, L, M, N)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> OpReverse for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> OpReverse for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)

Implementors§

source§

impl<A> OpReverse for T1<A>

§

type Output = T1<A>

source§

impl<A, B> OpReverse for T2<A, B>

§

type Output = T2<B, A>

source§

impl<A, B, C> OpReverse for T3<A, B, C>

§

type Output = T3<C, B, A>

source§

impl<A, B, C, D> OpReverse for T4<A, B, C, D>

§

type Output = T4<D, C, B, A>

source§

impl<A, B, C, D, E> OpReverse for T5<A, B, C, D, E>

§

type Output = T5<E, D, C, B, A>

source§

impl<A, B, C, D, E, F> OpReverse for T6<A, B, C, D, E, F>

§

type Output = T6<F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G> OpReverse for T7<A, B, C, D, E, F, G>

§

type Output = T7<G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H> OpReverse for T8<A, B, C, D, E, F, G, H>

§

type Output = T8<H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I> OpReverse for T9<A, B, C, D, E, F, G, H, I>

§

type Output = T9<I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J> OpReverse for T10<A, B, C, D, E, F, G, H, I, J>

§

type Output = T10<J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K> OpReverse for T11<A, B, C, D, E, F, G, H, I, J, K>

§

type Output = T11<K, J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> OpReverse for T12<A, B, C, D, E, F, G, H, I, J, K, L>

§

type Output = T12<L, K, J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> OpReverse for T13<A, B, C, D, E, F, G, H, I, J, K, L, M>

§

type Output = T13<M, L, K, J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> OpReverse for T14<A, B, C, D, E, F, G, H, I, J, K, L, M, N>

§

type Output = T14<N, M, L, K, J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> OpReverse for T15<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O>

§

type Output = T15<O, N, M, L, K, J, I, H, G, F, E, D, C, B, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> OpReverse for T16<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P>

§

type Output = T16<P, O, N, M, L, K, J, I, H, G, F, E, D, C, B, A>