pub trait TpmTagged {
type Tag: TpmUnmarshal + TpmMarshal + Copy;
type Value;
}Expand description
Types that are composed of a tag and a value e.g., a union.
Required Associated Types§
Sourcetype Tag: TpmUnmarshal + TpmMarshal + Copy
type Tag: TpmUnmarshal + TpmMarshal + Copy
The type of the tag/discriminant.