pub trait TeeReport: Sized {
    type Error;

    fn verify(&self) -> Result<(), Self::Error>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors