pub trait UnMarshall: Sized {
    fn unmarshall(marshalled_data: &[u8]) -> Result<Self>;
}
Expand description

Trait for types that can be created from TPM marshalled data.

Required methods

Creates the type from marshalled data.

Implementors