pub trait Service: Send + Sync + 'static {
    fn config<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ConfigRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ConfigResponse>, 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 ServiceServer.

Required Methods§

Config queries for the operator configuration.

Implementors§