pub trait ProverServiceClient:
Send
+ Sync
+ Debug {
// Required methods
fn prove_core<'life0, 'async_trait>(
&'life0 self,
req: ProveCoreRequest,
) -> Pin<Box<dyn Future<Output = Result<ProveCoreResponse, ClientError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn compress<'life0, 'async_trait>(
&'life0 self,
req: CompressRequest,
) -> Pin<Box<dyn Future<Output = Result<CompressResponse, ClientError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}