pub trait TpmUnmarshalResponse: Sized {
// Required method
fn unmarshal_body(tag: TpmSt, buf: &[u8]) -> TpmResult<(Self, &[u8])>;
}Expand description
Unmarshals a response body using the response tag to handle structural variations.
Required Methods§
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.