/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/ |
H A D | write_task.rs | 20 use crate::io::AsyncWrite; 41 W: AsyncWrite + Unpin, 54 W: AsyncWrite + Unpin, 81 W: AsyncWrite + Unpin, 94 W: AsyncWrite + Unpin, 122 W: AsyncWrite + Unpin, 136 W: AsyncWrite + Unpin, 163 W: AsyncWrite + Unpin, 173 W: AsyncWrite + Unpin + ?Sized, 188 W: AsyncWrite + Unpin, [all …]
|
H A D | async_write.rs | 24 pub trait AsyncWrite { trait 139 impl<T: AsyncWrite + Unpin + ?Sized> AsyncWrite for Box<T> { 143 impl<T: AsyncWrite + Unpin + ?Sized> AsyncWrite for &mut T { impl 147 impl<T> AsyncWrite for Pin<T> 149 T: DerefMut<Target = dyn AsyncWrite> + Unpin, 185 pub trait AsyncWriteExt: AsyncWrite { 328 impl<R: AsyncWrite + ?Sized> AsyncWriteExt for R {}
|
H A D | stderr.rs | 20 use crate::io::{AsyncWrite, State}; 48 impl AsyncWrite for Stderr {
|
H A D | stdout.rs | 20 use crate::io::{AsyncWrite, State}; 48 impl AsyncWrite for Stdout {
|
H A D | mod.rs | 35 pub use async_write::{AsyncWrite, AsyncWriteExt};
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
H A D | stream.rs | 20 use crate::runtime::{AsyncRead, AsyncWrite, ReadBuf}; 39 T: AsyncRead + AsyncWrite + Unpin, 51 impl<T> AsyncWrite for HttpStream<T> 53 T: AsyncRead + AsyncWrite + Unpin,
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/buffered/ |
H A D | async_buf_writer.rs | 20 use crate::io::{poll_ready, AsyncBufRead, AsyncRead, AsyncSeek, AsyncWrite, ReadBuf}; 38 impl<W: AsyncWrite> AsyncBufWriter<W> { 205 impl<W: AsyncWrite> AsyncWrite for AsyncBufWriter<W> { 295 impl<R: AsyncWrite + AsyncSeek> AsyncSeek for AsyncBufWriter<R> { 307 impl<W: AsyncWrite + AsyncRead> AsyncRead for AsyncBufWriter<W> { 318 impl<W: AsyncWrite + AsyncBufRead> AsyncBufRead for AsyncBufWriter<W> {
|
H A D | async_buf_reader.rs | 21 use crate::io::{poll_ready, AsyncRead, AsyncSeek, AsyncWrite, ReadBuf}; 251 impl<R: AsyncRead + AsyncWrite> AsyncWrite for AsyncBufReader<R> {
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/ |
H A D | mix.rs | 18 use crate::runtime::{AsyncRead, AsyncWrite, ReadBuf}; 30 T: AsyncRead + AsyncWrite + Unpin, 45 impl<T> AsyncWrite for MixStream<T> 47 T: AsyncRead + AsyncWrite + Unpin,
|
H A D | c_ssl_stream.rs | 20 use crate::runtime::{AsyncRead, AsyncWrite, ReadBuf}; 57 S: AsyncRead + AsyncWrite, 90 S: AsyncRead + AsyncWrite, 122 impl<S> AsyncWrite for AsyncSslStream<S> 124 S: AsyncRead + AsyncWrite,
|
H A D | wrapper.rs | 19 use crate::runtime::{AsyncRead, AsyncWrite, ReadBuf}; 58 S: AsyncWrite,
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/io/ |
H A D | split.rs | 22 use ylong_runtime::io::{AsyncRead, AsyncWrite, ReadBuf}; 53 T: AsyncRead + AsyncWrite, in split() argument 81 impl<T: AsyncWrite> AsyncWrite for Writer<T> {
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/ |
H A D | http1.rs | 31 use crate::runtime::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadBuf}; 42 S: AsyncRead + AsyncWrite + ConnInfo + Sync + Send + Unpin + 'static, in request() 98 S: AsyncRead + AsyncWrite + Sync + Send + Unpin + 'static, in encode_various_body() 142 S: AsyncRead + AsyncWrite + ConnInfo + Sync + Send + Unpin + 'static, in encode_request_part() 176 S: AsyncRead + AsyncWrite + ConnInfo + Sync + Send + Unpin + 'static, in decode_response() 230 S: AsyncRead + AsyncWrite + Sync + Send + Unpin + 'static, in encode_body()
|
H A D | mod.rs | 24 use crate::runtime::{AsyncRead, AsyncWrite}; 36 S: AsyncRead + AsyncWrite + ConnInfo + Sync + Send + Unpin + 'static, in request()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/ |
H A D | pty.rs | 22 use crate::io::{AsyncRead, AsyncWrite, ReadBuf}; 188 impl AsyncWrite for Pty { 265 impl AsyncWrite for BorrowWritePty<'_> { 324 impl AsyncWrite for SplitWritePty {
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/ |
H A D | lib.rs | 85 io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadBuf}, 92 io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadBuf},
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/ |
H A D | input.rs | 23 use crate::runtime::{AsyncWrite, UnboundedReceiver, WriteHalf}; 69 impl<S: AsyncWrite + Unpin + Sync + Send + 'static> Future for SendData<S> { 117 impl<S: AsyncWrite + Unpin + Sync + Send + 'static> SendData<S> {
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/ |
H A D | split.rs | 20 use crate::io::{AsyncRead, AsyncWrite, ReadBuf}; 39 impl AsyncWrite for BorrowWriteHalf<'_> { 85 impl AsyncWrite for SplitWriteHalf {
|
H A D | stream.rs | 26 use crate::io::{AsyncRead, AsyncWrite, ReadBuf}; 608 impl AsyncWrite for TcpStream {
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/ |
H A D | child.rs | 24 use crate::io::{AsyncRead, AsyncWrite, ReadBuf}; 139 impl AsyncWrite for ChildStdio {
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/ |
H A D | stream.rs | 25 use crate::io::{AsyncRead, AsyncWrite, ReadBuf}; 347 impl AsyncWrite for UnixStream {
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/ |
H A D | dispatcher.rs | 165 bounded_channel, unbounded_channel, AsyncRead, AsyncWrite, AsyncWriteExt, BoundedReceiver, 274 S: AsyncRead + AsyncWrite + Sync + Send + Unpin + 'static, 283 S: AsyncRead + AsyncWrite + Sync + Send + Unpin + 'static, 614 S: AsyncWrite + Unpin, in async_send_preface()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
H A D | pool.rs | 24 use crate::runtime::{AsyncRead, AsyncWrite}; 87 impl<S: AsyncRead + AsyncWrite + ConnInfo + Unpin + Send + Sync + 'static> Conns<S> {
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/ |
H A D | child.rs | 22 use crate::io::{AsyncRead, AsyncReadExt, AsyncWrite, ReadBuf}; 341 impl AsyncWrite for ChildStdin {
|
/ohos5.0/base/request/request/services/src/task/ |
H A D | operator.rs | 22 use ylong_runtime::io::AsyncWrite;
|