pub trait Health {
    // Provided methods
    fn check(
        &mut self,
        ctx: RpcContext<'_>,
        _req: HealthCheckRequest,
        sink: UnarySink<HealthCheckResponse>
    ) { ... }
    fn watch(
        &mut self,
        ctx: RpcContext<'_>,
        _req: HealthCheckRequest,
        sink: ServerStreamingSink<HealthCheckResponse>
    ) { ... }
}

Provided Methods§

Implementors§