Home
last modified time | relevance | path

Searched refs:BoxedIo (Results 1 – 4 of 4) sorted by relevance

/tonic/tonic/src/transport/channel/service/
H A Dio.rs15 pub(crate) struct BoxedIo(Pin<Box<dyn Io>>); struct
17 impl BoxedIo { implementation
19 BoxedIo(Box::pin(io)) in new()
23 impl Connection for BoxedIo { implementation
29 impl rt::Read for BoxedIo { implementation
39 impl rt::Write for BoxedIo { implementation
H A Dconnector.rs1 use super::BoxedIo;
40 type Response = BoxedIo;
72 Ok::<_, crate::BoxError>(BoxedIo::new(io)) in call()
H A Dtls.rs15 use super::io::BoxedIo;
104 pub(crate) async fn connect<I>(&self, io: I) -> Result<BoxedIo, crate::BoxError> in connect() argument
119 Ok(BoxedIo::new(TokioIo::new(io))) in connect()
H A Dmod.rs18 use self::io::BoxedIo;