[−][src]Struct futures_lite::stream::Iter
Stream for the iter() function.
Trait Implementations
impl<I: Debug> Debug for Iter<I>[src]
impl<I: Iterator> Stream for Iter<I>[src]
type Item = I::Item
Values yielded by the stream.
fn poll_next(
self: Pin<&mut Self>,
_cx: &mut Context
) -> Poll<Option<Self::Item>>[src]
self: Pin<&mut Self>,
_cx: &mut Context
) -> Poll<Option<Self::Item>>
fn size_hint(&self) -> (usize, Option<usize>)[src]
impl<I> Unpin for Iter<I>[src]
Auto Trait Implementations
impl<I> RefUnwindSafe for Iter<I> where
I: RefUnwindSafe,
I: RefUnwindSafe,
impl<I> Send for Iter<I> where
I: Send,
I: Send,
impl<I> Sync for Iter<I> where
I: Sync,
I: Sync,
impl<I> UnwindSafe for Iter<I> where
I: UnwindSafe,
I: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> StreamExt for T where
T: Stream + ?Sized, [src]
T: Stream + ?Sized,
fn next(&mut self) -> NextFuture<Self>ⓘImportant traits for NextFuture<'_, T>
impl<'_, T: Stream + Unpin + ?Sized> Future for NextFuture<'_, T> type Output = Option<T::Item>; where
Self: Unpin, [src]
Important traits for NextFuture<'_, T>
impl<'_, T: Stream + Unpin + ?Sized> Future for NextFuture<'_, T> type Output = Option<T::Item>;Self: Unpin,
fn collect<C: Default + Extend<Self::Item>>(self) -> CollectFuture<Self, C>ⓘImportant traits for CollectFuture<St, C>
impl<St, C> Future for CollectFuture<St, C> where
St: Stream,
C: Default + Extend<St::Item>, type Output = C; where
Self: Sized, [src]
Important traits for CollectFuture<St, C>
impl<St, C> Future for CollectFuture<St, C> where
St: Stream,
C: Default + Extend<St::Item>, type Output = C;Self: Sized,
fn try_collect<T, C: Default + Extend<T>>(self) -> TryCollectFuture<Self, C>ⓘImportant traits for TryCollectFuture<St, C>
impl<T, E, St, C> Future for TryCollectFuture<St, C> where
St: Stream<Item = Result<T, E>>,
C: Default + Extend<T>, type Output = Result<C, E>; where
Self: Sized,
Self::Item: Result<Ok = T>, [src]
Important traits for TryCollectFuture<St, C>
impl<T, E, St, C> Future for TryCollectFuture<St, C> where
St: Stream<Item = Result<T, E>>,
C: Default + Extend<T>, type Output = Result<C, E>;Self: Sized,
Self::Item: Result<Ok = T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<S, T, E> TryStream for S where
S: Stream<Item = Result<T, E>> + ?Sized, [src]
S: Stream<Item = Result<T, E>> + ?Sized,