Trait tuplex::IntoTuple

source ·
pub trait IntoTuple<Tup> {
    // Required method
    fn into_tuple(self) -> Tup;
}
Expand description

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

Required Methods§

source

fn into_tuple(self) -> Tup

Implementors§

source§

impl<Src, Dest> IntoTuple<Dest> for Src
where Dest: FromTuple<Src>,