[][src]Trait tuplex::IntoTuple

pub trait IntoTuple<Tup> {
    fn into_tuple(self) -> Tup;
}

Converts a tuple to a new one. This is the counterpart of FromTuple.

Required methods

fn into_tuple(self) -> Tup

Loading content...

Implementors

impl<Src, Dest> IntoTuple<Dest> for Src where
    Dest: FromTuple<Src>, 
[src]

Loading content...