TpmTagged

Trait TpmTagged 

Source
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§

Source

type Tag: TpmUnmarshal + TpmMarshal + Copy

The type of the tag/discriminant.

Source

type Value

The type of the value/union.

Implementors§