Struct futures_util::stream::Count
source · [−]pub struct Count<St> { /* private fields */ }
Expand description
Future for the count
method.
Trait Implementations
sourceimpl<St: FusedStream> FusedFuture for Count<St>
impl<St: FusedStream> FusedFuture for Count<St>
sourcefn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the underlying future should no longer be polled.impl<'__pin, St> Unpin for Count<St>where
__Origin<'__pin, St>: Unpin,
Auto Trait Implementations
impl<St> RefUnwindSafe for Count<St>where
St: RefUnwindSafe,
impl<St> Send for Count<St>where
St: Send,
impl<St> Sync for Count<St>where
St: Sync,
impl<St> UnwindSafe for Count<St>where
St: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
type Output = <F as Future>::Output
type Output = <F as Future>::Output
The output that the future will produce on completion.
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more