Struct futures_util::stream::TryConcat
source · pub struct TryConcat<St: TryStream> { /* private fields */ }
Expand description
Future for the try_concat
method.
Trait Implementations§
source§impl<St> Future for TryConcat<St>where
St: TryStream,
St::Ok: Extend<<St::Ok as IntoIterator>::Item> + IntoIterator + Default,
impl<St> Future for TryConcat<St>where
St: TryStream,
St::Ok: Extend<<St::Ok as IntoIterator>::Item> + IntoIterator + Default,
impl<'__pin, St: TryStream> Unpin for TryConcat<St>where
__Origin<'__pin, St>: Unpin,
Auto Trait Implementations§
impl<St> RefUnwindSafe for TryConcat<St>where
St: RefUnwindSafe,
<St as TryStream>::Ok: RefUnwindSafe,
impl<St> Send for TryConcat<St>where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Sync for TryConcat<St>where
St: Sync,
<St as TryStream>::Ok: Sync,
impl<St> UnwindSafe for TryConcat<St>where
St: UnwindSafe,
<St as TryStream>::Ok: 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