Macros§
- hlist
- Shorthand for building an
HList
from the given elements.
Structs§
- HCons
- The “cons” of a head element of type
H
and a tailHList
. - HNil
- An empty
HList
used as the terminal element.
Traits§
- FromH
List - Allows for conversion from an
HList
to an instance of theSelf
type. - HList
- A heterogeneous list that can hold elements of different types.
- IntoH
List - Allows for converting (and consuming)
Self
into anHList
. - ToHList
- Allows for copying the contents of
Self
into anHList
.