pub trait IntegerRepr: Copy {
type Wrapper: TpmSized + TpmMarshal + TpmUnmarshal + From<Self> + Into<Self>;
}Expand description
Associates primitive integer types with their TPM wrapper counterparts.
Required Associated Types§
Sourcetype Wrapper: TpmSized + TpmMarshal + TpmUnmarshal + From<Self> + Into<Self>
type Wrapper: TpmSized + TpmMarshal + TpmUnmarshal + From<Self> + Into<Self>
The wrapper type used for marshaling and unmarshaling.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.