Searched defs:Stream (Results 1 – 5 of 5) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/ |
D | connector.rs | 24 type Stream: Read + Write + 'static; typedef 29 fn connect(&self, uri: &Uri) -> Result<Self::Stream, Self::Error>; in connect() 62 type Stream = TcpStream; typedef 65 fn connect(&self, uri: &Uri) -> Result<Self::Stream, Self::Error> { in connect() 87 type Stream = MixStream<TcpStream>; typedef 90 fn connect(&self, uri: &Uri) -> Result<Self::Stream, Self::Error> { in connect()
|
D | pool.rs | 38 pub(crate) fn connect_to(&self, uri: Uri) -> Result<Conn<C::Stream>, HttpClientError> { in connect_to()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
D | connector.rs | 28 type Stream: AsyncRead + AsyncWrite + Unpin + Sync + Send + 'static; typedef 83 type Stream = TcpStream; typedef 114 type Stream = MixStream<TcpStream>; typedef
|
D | pool.rs | 40 pub(crate) async fn connect_to(&self, uri: Uri) -> Result<Conn<C::Stream>, HttpClientError> { in connect_to()
|
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/ |
D | mod.rs | 482 Stream(Pin<Box<dyn AsyncRead + Send + Sync>>), enumerator
|