Home
last modified time | relevance | path

Searched defs:Stream (Results 1 – 5 of 5) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
Dconnector.rs24 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()
Dpool.rs38 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/
Dconnector.rs28 type Stream: AsyncRead + AsyncWrite + Unpin + Sync + Send + 'static; typedef
83 type Stream = TcpStream; typedef
114 type Stream = MixStream<TcpStream>; typedef
Dpool.rs40 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/
Dmod.rs482 Stream(Pin<Box<dyn AsyncRead + Send + Sync>>), enumerator