pub trait ObserveServiceClient {
// Required methods
fn get_aurae_daemon_log_stream<'life0, 'async_trait>(
&'life0 self,
req: GetAuraeDaemonLogStreamRequest
) -> Pin<Box<dyn Future<Output = Result<Response<Streaming<GetAuraeDaemonLogStreamResponse>>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_sub_process_stream<'life0, 'async_trait>(
&'life0 self,
req: GetSubProcessStreamRequest
) -> Pin<Box<dyn Future<Output = Result<Response<Streaming<GetSubProcessStreamResponse>>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_posix_signals_stream<'life0, 'async_trait>(
&'life0 self,
req: GetPosixSignalsStreamRequest
) -> Pin<Box<dyn Future<Output = Result<Response<Streaming<GetPosixSignalsStreamResponse>>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}