Home
last modified time | relevance | path

Searched refs:AsyncWrite (Results 1 – 25 of 29) sorted by relevance

12

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dwrite_task.rs20 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 Dasync_write.rs24 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 Dstderr.rs20 use crate::io::{AsyncWrite, State};
48 impl AsyncWrite for Stderr {
H A Dstdout.rs20 use crate::io::{AsyncWrite, State};
48 impl AsyncWrite for Stdout {
H A Dmod.rs35 pub use async_write::{AsyncWrite, AsyncWriteExt};
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/
H A Dstream.rs20 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 Dasync_buf_writer.rs20 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 Dasync_buf_reader.rs21 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 Dmix.rs18 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 Dc_ssl_stream.rs20 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 Dwrapper.rs19 use crate::runtime::{AsyncRead, AsyncWrite, ReadBuf};
58 S: AsyncWrite,
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/io/
H A Dsplit.rs22 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 Dhttp1.rs31 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 Dmod.rs24 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 Dpty.rs22 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 Dlib.rs85 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 Dinput.rs23 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 Dsplit.rs20 use crate::io::{AsyncRead, AsyncWrite, ReadBuf};
39 impl AsyncWrite for BorrowWriteHalf<'_> {
85 impl AsyncWrite for SplitWriteHalf {
H A Dstream.rs26 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 Dchild.rs24 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 Dstream.rs25 use crate::io::{AsyncRead, AsyncWrite, ReadBuf};
347 impl AsyncWrite for UnixStream {
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Ddispatcher.rs165 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 Dpool.rs24 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 Dchild.rs22 use crate::io::{AsyncRead, AsyncReadExt, AsyncWrite, ReadBuf};
341 impl AsyncWrite for ChildStdin {
/ohos5.0/base/request/request/services/src/task/
H A Doperator.rs22 use ylong_runtime::io::AsyncWrite;

12