pub trait TpmMarshal { // Required method fn marshal(&self, writer: &mut TpmWriter<'_>) -> TpmResult<()>; }
Marshals the object into the given writer.
Returns Err(TpmProtocolError) on a marshal failure.
Err(TpmProtocolError)