pub trait EnclavePlatform<T: EnclaveType> {
type Loader;
// Required method
fn build(
self,
loader: Self::Loader,
configuration: EnclaveConfiguration,
type_configuration: T::Configuration,
) -> Result<T, Error>;
}