[−][src]Struct futures_lite::stream::Empty
Stream for the empty()
function.
Trait Implementations
impl<T: Debug> Debug for Empty<T>
[src]
impl<T> Stream for Empty<T>
[src]
type Item = T
Values yielded by the stream.
fn poll_next(self: Pin<&mut Self>, _: &mut Context) -> Poll<Option<Self::Item>>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
impl<T> Unpin for Empty<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Empty<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Empty<T> where
T: Send,
T: Send,
impl<T> Sync for Empty<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for Empty<T> where
T: UnwindSafe,
T: 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<S> StreamExt for S where
S: Stream + ?Sized,
[src]
S: Stream + ?Sized,
fn next(&mut self) -> NextFuture<Self>ⓘImportant traits for NextFuture<'_, S>
impl<S: Stream + Unpin + ?Sized, '_> Future for NextFuture<'_, S> type Output = Option<S::Item>;
where
Self: Unpin,
[src]
Important traits for NextFuture<'_, S>
impl<S: Stream + Unpin + ?Sized, '_> Future for NextFuture<'_, S> type Output = Option<S::Item>;
Self: Unpin,
fn count(self) -> CountFuture<Self>ⓘImportant traits for CountFuture<S>
impl<S: Stream + ?Sized> Future for CountFuture<S> type Output = usize;
where
Self: Sized,
[src]
Important traits for CountFuture<S>
impl<S: Stream + ?Sized> Future for CountFuture<S> type Output = usize;
Self: Sized,
fn map<T, F>(self, f: F) -> Map<Self, F> where
Self: Sized,
F: FnMut(Self::Item) -> T,
[src]
Self: Sized,
F: FnMut(Self::Item) -> T,
fn filter<P>(self, predicate: P) -> Filter<Self, P> where
Self: Sized,
P: FnMut(&Self::Item) -> bool,
[src]
Self: Sized,
P: FnMut(&Self::Item) -> bool,
fn filter_map<T, F>(self, f: F) -> FilterMap<Self, F> where
Self: Sized,
F: FnMut(Self::Item) -> Option<T>,
[src]
Self: Sized,
F: FnMut(Self::Item) -> Option<T>,
fn collect<C: Default + Extend<Self::Item>>(self) -> CollectFuture<Self, C>ⓘImportant traits for CollectFuture<S, C>
impl<S, C> Future for CollectFuture<S, C> where
S: Stream,
C: Default + Extend<S::Item>, type Output = C;
where
Self: Sized,
[src]
Important traits for CollectFuture<S, C>
impl<S, C> Future for CollectFuture<S, C> where
S: Stream,
C: Default + Extend<S::Item>, type Output = C;
Self: Sized,
fn try_collect<T, C: Default + Extend<T>>(self) -> TryCollectFuture<Self, C>ⓘImportant traits for TryCollectFuture<S, C>
impl<T, E, S, C> Future for TryCollectFuture<S, C> where
S: 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<S, C>
impl<T, E, S, C> Future for TryCollectFuture<S, C> where
S: Stream<Item = Result<T, E>>,
C: Default + Extend<T>, type Output = Result<C, E>;
Self: Sized,
Self::Item: Result<Ok = T>,
fn fold<T, F>(self, init: T, f: F) -> FoldFuture<Self, F, T>ⓘImportant traits for FoldFuture<S, F, T>
impl<S, F, T> Future for FoldFuture<S, F, T> where
S: Stream + Sized,
F: FnMut(T, S::Item) -> T, type Output = T;
where
Self: Sized,
F: FnMut(T, Self::Item) -> T,
[src]
Important traits for FoldFuture<S, F, T>
impl<S, F, T> Future for FoldFuture<S, F, T> where
S: Stream + Sized,
F: FnMut(T, S::Item) -> T, type Output = T;
Self: Sized,
F: FnMut(T, Self::Item) -> T,
fn try_fold<T, E, F, B>(&mut self, init: B, f: F) -> TryFoldFuture<Self, F, B>ⓘImportant traits for TryFoldFuture<'a, S, F, B>
impl<'a, T, E, S, F, B> Future for TryFoldFuture<'a, S, F, B> where
S: Stream + Unpin,
S::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>, type Output = Result<B, E>;
where
Self: Unpin + Sized,
Self::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>,
[src]
Important traits for TryFoldFuture<'a, S, F, B>
impl<'a, T, E, S, F, B> Future for TryFoldFuture<'a, S, F, B> where
S: Stream + Unpin,
S::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>, type Output = Result<B, E>;
Self: Unpin + Sized,
Self::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>,
fn boxed(self) -> Boxed<Self::Item> where
Self: Sized + Send + 'static,
[src]
Self: Sized + Send + 'static,
fn boxed_local(self) -> BoxedLocal<Self::Item> where
Self: Sized + 'static,
[src]
Self: Sized + 'static,
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,