pub trait EnclaveClient {
type Error: Error + Display;
// Required method
fn verify_quote(report: &[u8], nonce: u64) -> Result<[u8; 64], Self::Error>;
}Expand description
Logic for clients to verify enclave reports and extract data from them
Required Associated Types§
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.