[−][src]Struct futures_lite::future::Zip
Future for the zip()
function.
Trait Implementations
impl<F1: Debug, F2: Debug> Debug for Zip<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<F1, F2> Future for Zip<F1, F2> where
F1: Future,
F2: Future,
[src]
F1: Future,
F2: Future,
type Output = (F1::Output, F2::Output)
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 Zip<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 Zip<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 Zip<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 Zip<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 Zip<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 race<F>(self, other: F) -> Race<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>,
[src]
Self: Sized,
F: Future<Output = Self::Output>,
fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>> where
Self: Sized + Send + 'a,
[src]
Self: Sized + Send + 'a,
fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>> where
Self: Sized + 'a,
[src]
Self: Sized + 'a,
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<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,