pub trait ToolsApiMut {
    type Error;
    fn convert_app(
        &mut self,
        body: ConversionRequest
    ) -> Result<ConversionResponse, Self::Error>; }

Associated Types

Required methods

Convert an application to run in EnclaveOS.

Implementors