TupleUnwrap

Trait TupleUnwrap 

Source
pub trait TupleUnwrap {
    type Unwrapped;

    // Required method
    fn unwrap(self) -> Self::Unwrapped;
}

Required Associated Types§

Required Methods§

Source

fn unwrap(self) -> Self::Unwrapped

Implementations on Foreign Types§

Source§

impl<A> TupleUnwrap for (A, ())

Source§

type Unwrapped = A

Source§

fn unwrap(self) -> Self::Unwrapped

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§