in src/reporter/grpc.rs [433:441]
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
Pin::new(&mut self.handles).poll(cx).map(|rs| {
let rs = rs?;
for r in rs {
r?;
}
Ok(())
})
}