Struct wasmtime_environ::__core::stream::FromIter [−][src]
pub struct FromIter<I> { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (
stream_from_iter
)Expand description
A stream that was created from iterator.
This stream is created by the from_iter
function.
See it documentation for more.
Trait Implementations
🔬 This is a nightly-only experimental API. (
async_stream
)The type of items yielded by the stream.
🔬 This is a nightly-only experimental API. (
async_stream
)Attempt to pull out the next value of this stream, registering the
current task for wakeup if the value is not yet available, and returning
None
if the stream is exhausted. Read more
Auto Trait Implementations
impl<I> RefUnwindSafe for FromIter<I> where
I: RefUnwindSafe,
impl<I> UnwindSafe for FromIter<I> where
I: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more