pub trait GrpcClientFactory: Send + Sync {
type ClientType;
// Required method
fn get_client<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
request_id: &'life1 RequestId,
project_id: &'life2 ValidShardedId<ProjectId>,
) -> Pin<Box<dyn Future<Output = Result<Self::ClientType, GrpcClientError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}