Macro tuple_list::tuple_list_type [−][src]
macro_rules! tuple_list_type {
() => { ... };
($i : ty) => { ... };
($i : ty,) => { ... };
($i : ty, $($e : ty), *) => { ... };
($i : ty, $($e : ty), *,) => { ... };
}
Expand description
Macro creating tuple list types from list of element types.
See macro tuple_list!
for details.