pub trait TpmTagged { type Tag: TpmBuild + TpmParse<'static> + 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.