Searched defs:Stream (Results 1 – 8 of 8) 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 | 39 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 | pool.rs | 46 pub(crate) async fn connect_to(&self, uri: &Uri) -> Result<Conn<C::Stream>, HttpClientError> { in connect_to() 95 C: Connector<Stream = S>, in conn() 116 C: Connector<Stream = S>, in conn_h1() 133 C: Connector<Stream = S>, in conn_h2() 169 C: Connector<Stream = S>, in conn_negotiate()
|
| D | request.rs | 259 Stream(Box<dyn ReusableReader + Send + Sync + Unpin>), enumerator
|
| D | client.rs | 192 async fn connect_to(&self, uri: &Uri) -> Result<Conn<C::Stream>, HttpClientError> { in connect_to() 206 conn: Conn<C::Stream>, in send_request_on_conn()
|
| /commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/ |
| D | streams.rs | 115 pub(crate) struct Stream { struct 118 pub(crate) state: H2StreamState, argument 128 pub(crate) struct Streams { argument 730 impl Stream { implementation
|
| /commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
| D | mod.rs | 35 type Stream: AsyncRead + AsyncWrite + ConnInfo + Unpin + Sync + Send + 'static; typedef 140 type Stream = HttpStream<TcpStream>; typedef 196 type Stream = HttpStream<MixStream<TcpStream>>; typedef
|
| /commonlibrary/rust/ylong_http/ylong_http/src/body/mime/ |
| D | simple.rs | 504 Stream(Box<dyn ReusableReader + Send + Sync + Unpin>), enumerator
|