[−][src]Struct futures_lite::future::TryJoin
Future for the try_join()
function.
Trait Implementations
impl<F1: Debug, F2: Debug> Debug for TryJoin<F1, F2> where
F1: Future,
F2: Future,
F1::Output: Debug,
F2::Output: Debug,
[src]
F1: Future,
F2: Future,
F1::Output: Debug,
F2::Output: Debug,
impl<T1, T2, E, F1, F2> Future for TryJoin<F1, F2> where
F1: Future<Output = Result<T1, E>>,
F2: Future<Output = Result<T2, E>>,
[src]
F1: Future<Output = Result<T1, E>>,
F2: Future<Output = Result<T2, E>>,
type Output = Result<(T1, T2), E>
The type of value produced on completion.
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output>
[src]
impl<'__pin, F1, F2> Unpin for TryJoin<F1, F2> where
__Origin<'__pin, F1, F2>: Unpin,
F1: Future,
F2: Future,
[src]
__Origin<'__pin, F1, F2>: Unpin,
F1: Future,
F2: Future,
Auto Trait Implementations
impl<F1, F2> RefUnwindSafe for TryJoin<F1, F2> where
F1: RefUnwindSafe,
F2: RefUnwindSafe,
<F1 as Future>::Output: RefUnwindSafe,
<F2 as Future>::Output: RefUnwindSafe,
F1: RefUnwindSafe,
F2: RefUnwindSafe,
<F1 as Future>::Output: RefUnwindSafe,
<F2 as Future>::Output: RefUnwindSafe,
impl<F1, F2> Send for TryJoin<F1, F2> where
F1: Send,
F2: Send,
<F1 as Future>::Output: Send,
<F2 as Future>::Output: Send,
F1: Send,
F2: Send,
<F1 as Future>::Output: Send,
<F2 as Future>::Output: Send,
impl<F1, F2> Sync for TryJoin<F1, F2> where
F1: Sync,
F2: Sync,
<F1 as Future>::Output: Sync,
<F2 as Future>::Output: Sync,
F1: Sync,
F2: Sync,
<F1 as Future>::Output: Sync,
<F2 as Future>::Output: Sync,
impl<F1, F2> UnwindSafe for TryJoin<F1, F2> where
F1: UnwindSafe,
F2: UnwindSafe,
<F1 as Future>::Output: UnwindSafe,
<F2 as Future>::Output: UnwindSafe,
F1: UnwindSafe,
F2: UnwindSafe,
<F1 as Future>::Output: UnwindSafe,
<F2 as Future>::Output: UnwindSafe,
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,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<F> FutureExt for F where
F: Future + ?Sized,
[src]
F: Future + ?Sized,
fn or<F>(self, other: F) -> Or<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>,
[src]
Self: Sized,
F: Future<Output = Self::Output>,
fn boxed(self) -> Boxed<Self::Output> where
Self: Sized + Send + 'static,
[src]
Self: Sized + Send + 'static,
fn boxed_local(self) -> BoxedLocal<Self::Output> where
Self: Sized + 'static,
[src]
Self: Sized + 'static,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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.
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
fn try_poll(self: Pin<&mut F>, cx: &mut Context) -> Poll<<F as Future>::Output>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,