Trait flatten::tuple::IntoTuple [] [src]

pub trait IntoTuple: ValidNode {
    type Out;
    fn into_tuple(self) -> Self::Out;
}
This code doesn't compile so be extra careful!
extern crate flatten;
use flatten::Flatten;

let too_big = (1, 2, 3, (4, 5), 6, (7, 8), (9, 10), (11, 12, 13, 14), 15);
too_big.flatten();//~ ERROR length of result tuple should be <= 12

Associated Types

Required Methods

Implementors