pub trait Marshall: Sized {
    const BUFFER_SIZE: usize;

    fn marshall(&self) -> Result<Vec<u8>>;
}
Expand description

Trait for types that can be converted into TPM marshalled data.

Associated Constants

Required methods

Returns the type in the form of marshalled data

Implementors