Home
last modified time | relevance | path

Searched refs:msg_f (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/grpcio/src/call/
Dclient.rs426 msg_f: Option<BatchFuture>, field
436 msg_f: None, in new()
461 if let Some(msg_f) = &mut self.msg_f { in poll()
462 bytes = ready!(Pin::new(msg_f).poll(cx)?); in poll()
477 self.msg_f.take(); in poll()
478 let msg_f = self.call.call(|c| c.call.start_recv_message())?; in poll() localVariable
479 self.msg_f = Some(msg_f); in poll()
Dmod.rs514 msg_f: Option<BatchFuture>, field
522 msg_f: None, in new()
548 if let Some(msg_f) = &mut self.msg_f { in poll()
549 bytes = ready!(Pin::new(msg_f).poll(cx)?); in poll()
564 self.msg_f.take(); in poll()
565 let msg_f = call.call(|c| c.call.start_recv_message())?; in poll() localVariable
566 self.msg_f = Some(msg_f); in poll()