pub trait TraceService: Send + Sync + 'static {
    // Required method
    fn export<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ExportTraceServiceRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ExportTraceServiceResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with TraceServiceServer.

Required Methods§

source

fn export<'life0, 'async_trait>( &'life0 self, request: Request<ExportTraceServiceRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<ExportTraceServiceResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

For performance reasons, it is recommended to keep this RPC alive for the entire life of the application.

Implementors§