Home
last modified time | relevance | path

Searched refs:AsyncStream (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/async-stream/src/
Dasync_stream.rs12 pub struct AsyncStream<T, U> {
20 impl<T, U> AsyncStream<T, U> { implementation
22 pub fn new(rx: Receiver<T>, generator: U) -> AsyncStream<T, U> { in new()
23 AsyncStream { in new()
31 impl<T, U> FusedStream for AsyncStream<T, U> implementation
40 impl<T, U> Stream for AsyncStream<T, U> implementation
Dlib.rs236 pub use crate::async_stream::AsyncStream;
/external/crosvm/common/audio_streams/src/
Dasync_api.rs61 pub type AsyncStream = Box<dyn ReadWriteAsync + Send>; typedef
68 fn async_unix_stream(&self, f: UnixStream) -> Result<AsyncStream>; in async_unix_stream() argument
99 fn async_unix_stream(&self, _f: UnixStream) -> Result<AsyncStream> { in async_unix_stream() argument
Daudio_streams.rs60 pub use async_api::AsyncStream;
/external/crosvm/cros_async/src/
Daudio_streams_async.rs18 use audio_streams::async_api::AsyncStream;
86 fn async_unix_stream(&self, stream: UnixStream) -> Result<AsyncStream> { in async_unix_stream() argument
/external/rust/crates/async-stream/
DCHANGELOG.md18 * Implement `Stream::size_hint` method on `AsyncStream` (#40)
/external/rust/crates/async-stream-impl/src/
Dlib.rs232 #crate_path::__private::AsyncStream::new(__yield_rx, async move { in stream_inner()
266 #crate_path::__private::AsyncStream::new(__yield_rx, async move { in try_stream_inner()
/external/pigweed/pw_stream/
Ddocs.rst655 capabilities, or a separate ``AsyncStream`` could be created.