pub trait DMSCGrpcService: Send + Sync {
// Required methods
fn handle_request<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
method: &'life1 str,
data: &'life2 [u8],
) -> Pin<Box<dyn Future<Output = DMSCResult<Vec<u8>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn service_name(&self) -> &'static str;
}