Home
last modified time | relevance | path

Searched refs:as_mut (Results 1 – 7 of 7) sorted by relevance

/tonic/tonic/src/transport/
H A Dtls.rs30 self.pem.as_mut() in get_mut()
46 fn as_mut(&mut self) -> &mut [u8] { in as_mut() method
47 self.pem.as_mut() in as_mut()
/tonic/tonic-web/src/
H A Dcall.rs155 .decode(self.as_mut().project().buf.split_to(index)) in decode_chunk()
176 if let Some(bytes) = self.as_mut().decode_chunk()? { in poll_decode()
180 let this = self.as_mut().project(); in poll_decode()
220 let this = self.as_mut().project(); in poll_encode()
263 let mut me = self.as_mut(); in poll_frame()
266 match ready!(me.as_mut().poll_decode(cx)) { in poll_frame()
268 me.as_mut() in poll_frame()
275 match me.as_mut().project().trailers { in poll_frame()
280 me.as_mut().project().trailers.replace(trailers); in poll_frame()
292 let buf = me.as_mut().project().decoded; in poll_frame()
[all …]
/tonic/tonic/src/transport/server/
H A Dio_stream.rs55 match ready!(self.as_mut().project().inner.poll_next(cx)) { in poll_next_without_tls()
84 let mut projected = self.as_mut().project(); in poll_next()
H A Dmod.rs786 inner: watcher.as_mut().map(|w| w.changed()), in serve_connection()
803 conn.as_mut().graceful_shutdown(); in serve_connection()
807 conn.as_mut().graceful_shutdown(); in serve_connection()
1124 match self.as_mut().project().inner.as_pin_mut() { in poll()
/tonic/tonic/src/service/
H A Drouter.rs174 match ready!(Pin::new(&mut self.as_mut().0).poll(cx)) { in poll()
/tonic/tonic/src/codec/
H A Dencode.rs94 match source.as_mut().poll_next(cx) { in poll_next()
/tonic/tonic/src/metadata/
H A Dmap.rs48 fn as_mut(&mut self) -> &mut http::HeaderMap { in as_mut() method