Struct futures_util::stream::TryConcat
source · [−]pub struct TryConcat<St: TryStream> { /* private fields */ }
Expand description
Future for the try_concat
method.
Trait Implementations
sourceimpl<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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more