pub trait TpmTagged { type Tag: TpmParse + TpmBuild + Copy; type Value; }
Types that are composed of a tag and a value e.g., a union.
The type of the tag/discriminant.
The type of the value/union.