[][src]Struct futures::stream::Next

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct Next<'a, St> where
    St: 'a + ?Sized
{ /* fields omitted */ }

Future for the next method.

Trait Implementations

impl<'_, St> Future for Next<'_, St> where
    St: Unpin + Stream + ?Sized
[src]

type Output = Option<<St as Stream>::Item>

The type of value produced on completion.

impl<'_, St> Unpin for Next<'_, St> where
    St: Unpin + Stream + ?Sized
[src]

impl<'a, St> Debug for Next<'a, St> where
    St: Debug + ?Sized
[src]

impl<'_, St> FusedFuture for Next<'_, St> where
    St: Unpin + FusedStream + ?Sized
[src]

Auto Trait Implementations

impl<'a, St: ?Sized> Send for Next<'a, St> where
    St: Send

impl<'a, St: ?Sized> Sync for Next<'a, St> where
    St: Sync

impl<'a, St> !UnwindSafe for Next<'a, St>

impl<'a, St: ?Sized> RefUnwindSafe for Next<'a, St> where
    St: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]