Macro hlist_macro::HList [] [src]

macro_rules! HList {
    [] => { ... };
    [$head: ty] => { ... };
    [$head: ty, $($tail: ty), *] => { ... };
    [$head: ty, $($tail: ty), *,] => { ... };
}