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;
}
Available on crate features
gen-tonic-messages
and trace
and gen-tonic
only.Expand description
Generated trait containing gRPC methods that should be implemented for use with TraceServiceServer.
Required Methods§
Sourcefn 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,
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.