[−][src]Struct futures_lite::stream::NextFuture
Future for the StreamExt::next()
method.
Trait Implementations
impl<'a, T: Debug + Unpin + ?Sized> Debug for NextFuture<'a, T>
[src]
impl<'_, T: Stream + Unpin + ?Sized> Future for NextFuture<'_, T>
[src]
type Output = Option<T::Item>
The type of value produced on completion.
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output>
[src]
impl<'_, St: ?Sized + Unpin> Unpin for NextFuture<'_, St>
[src]
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for NextFuture<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for NextFuture<'a, T> where
T: Send,
T: Send,
impl<'a, T: ?Sized> Sync for NextFuture<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> !UnwindSafe for NextFuture<'a, T>
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> FutureExt for T where
T: Future + ?Sized,
[src]
T: Future + ?Sized,
fn boxed(self) -> Boxed<Self::Output> where
Self: Sized + Send + 'static,
[src]
Self: Sized + Send + 'static,
fn boxed_local(self) -> BoxedLocal<Self::Output> where
Self: Sized + 'static,
[src]
Self: Sized + 'static,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<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>,