Struct futures_util::stream::Count
source · pub struct Count<St> { /* private fields */ }
Expand description
Future for the count
method.
Trait Implementations§
source§impl<St: FusedStream> FusedFuture for Count<St>
impl<St: FusedStream> FusedFuture for Count<St>
source§fn 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§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more