Struct futures_util::future::TryJoin5 [−][src]
Future for the try_join5
function.
Trait Implementations
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: TryFuture + Debug,
Fut1::Ok: Debug,
Fut1::Error: Debug,
Fut2: TryFuture + Debug,
Fut2::Ok: Debug,
Fut2::Error: Debug,
Fut3: TryFuture + Debug,
Fut3::Ok: Debug,
Fut3::Error: Debug,
Fut4: TryFuture + Debug,
Fut4::Ok: Debug,
Fut4::Error: Debug,
Fut5: TryFuture + Debug,
Fut5::Ok: Debug,
Fut5::Error: Debug,
[src]
Fut1: TryFuture + Debug,
Fut1::Ok: Debug,
Fut1::Error: Debug,
Fut2: TryFuture + Debug,
Fut2::Ok: Debug,
Fut2::Error: Debug,
Fut3: TryFuture + Debug,
Fut3::Ok: Debug,
Fut3::Error: Debug,
Fut4: TryFuture + Debug,
Fut4::Ok: Debug,
Fut4::Error: Debug,
Fut5: TryFuture + Debug,
Fut5::Ok: Debug,
Fut5::Error: Debug,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Future for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: TryFuture,
Fut2: TryFuture<Error = Fut1::Error>,
Fut3: TryFuture<Error = Fut1::Error>,
Fut4: TryFuture<Error = Fut1::Error>,
Fut5: TryFuture<Error = Fut1::Error>,
[src]
Fut1: TryFuture,
Fut2: TryFuture<Error = Fut1::Error>,
Fut3: TryFuture<Error = Fut1::Error>,
Fut4: TryFuture<Error = Fut1::Error>,
Fut5: TryFuture<Error = Fut1::Error>,
type Output = Result<(Fut1::Ok, Fut2::Ok, Fut3::Ok, Fut4::Ok, Fut5::Ok), Fut1::Error>
The type of value produced on completion.
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>
[src]
impl<'__pin, Fut1: TryFuture, Fut2: TryFuture, Fut3: TryFuture, Fut4: TryFuture, Fut5: TryFuture> Unpin for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
__Origin<'__pin, Fut1, Fut2, Fut3, Fut4, Fut5>: Unpin,
[src]
__Origin<'__pin, Fut1, Fut2, Fut3, Fut4, Fut5>: Unpin,
Auto Trait Implementations
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Send for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
<Fut5 as TryFuture>::Ok: Send,
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
<Fut5 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Sync for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Sync,
Fut2: Sync,
Fut3: Sync,
Fut4: Sync,
Fut5: Sync,
<Fut1 as TryFuture>::Ok: Sync,
<Fut2 as TryFuture>::Ok: Sync,
<Fut3 as TryFuture>::Ok: Sync,
<Fut4 as TryFuture>::Ok: Sync,
<Fut5 as TryFuture>::Ok: Sync,
Fut1: Sync,
Fut2: Sync,
Fut3: Sync,
Fut4: Sync,
Fut5: Sync,
<Fut1 as TryFuture>::Ok: Sync,
<Fut2 as TryFuture>::Ok: Sync,
<Fut3 as TryFuture>::Ok: Sync,
<Fut4 as TryFuture>::Ok: Sync,
<Fut5 as TryFuture>::Ok: Sync,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<F> IntoFuture for F where
F: Future,
[src]
F: Future,
type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<F, T, E> TryFuture for F where
F: Future<Output = Result<T, E>> + ?Sized,
[src]
F: Future<Output = Result<T, E>> + ?Sized,
type Ok = T
The type of successful values yielded by this future
type Error = E
The type of failures yielded by this future
pub fn try_poll(
self: Pin<&mut F>,
cx: &mut Context<'_>
) -> Poll<<F as Future>::Output>
[src]
self: Pin<&mut F>,
cx: &mut Context<'_>
) -> Poll<<F as Future>::Output>
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,