Skip to main contentCrate pl_hlist
Source - hlist
- Shorthand for building an
HList from the given elements.
- HCons
- The “cons” of a head element of type
H and a tail HList. - HNil
- An empty
HList used as the terminal element.
- FromHList
- Allows for conversion from an
HList to an instance of the Self type. - HList
- A heterogeneous list that can hold elements of different types.
- IntoHList
- Allows for converting (and consuming)
Self into an HList. - ToHList
- Allows for copying the contents of
Self into an HList.
- HListSupport