Home
last modified time | relevance | path

Searched refs:IntoAsyncRead (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/futures-util/src/stream/try_stream/
Dinto_async_read.rs14 pub struct IntoAsyncRead<St> struct
23 impl<St> Unpin for IntoAsyncRead<St> argument
37 impl<St> IntoAsyncRead<St> impl
50 impl<St> AsyncRead for IntoAsyncRead<St> implementation
105 impl<St> AsyncWrite for IntoAsyncRead<St> implementation
133 impl<St> AsyncBufRead for IntoAsyncRead<St> implementation
Dmod.rs139 pub use self::into_async_read::IntoAsyncRead;
995 fn into_async_read(self) -> IntoAsyncRead<Self> in into_async_read()
1000 crate::io::assert_read(IntoAsyncRead::new(self)) in into_async_read()
/external/rust/crates/futures-util/src/stream/
Dmod.rs59 pub use self::try_stream::IntoAsyncRead;
/external/rust/crates/futures/tests/
Dauto_traits.rs1331 assert_impl!(IntoAsyncRead<SendTryStream<Vec<u8>, io::Error>>: Send);
1332 assert_not_impl!(IntoAsyncRead<LocalTryStream<Vec<u8>, io::Error>>: Send);
1333 assert_impl!(IntoAsyncRead<SyncTryStream<Vec<u8>, io::Error>>: Sync);
1334 assert_not_impl!(IntoAsyncRead<LocalTryStream<Vec<u8>, io::Error>>: Sync);
1335 assert_impl!(IntoAsyncRead<UnpinTryStream<Vec<u8>, io::Error>>: Unpin);