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