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

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

Required Methods

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

Implementors