Struct futures_lite::future::Zip

source ·
pub struct Zip<F1, F2>
where F1: Future, F2: Future,
{ /* private fields */ }
Expand description

Future for the zip() function.

Trait Implementations§

source§

impl<F1, F2> Debug for Zip<F1, F2>
where F1: Future + Debug, F2: Future + Debug, F1::Output: Debug, F2::Output: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<F1, F2> Future for Zip<F1, F2>
where F1: Future, F2: Future,

§

type Output = (<F1 as Future>::Output, <F2 as Future>::Output)

The type of value produced on completion.
source§

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
source§

impl<'__pin, F1, F2> Unpin for Zip<F1, F2>
where __Origin<'__pin, F1, F2>: Unpin, F1: Future, F2: Future,

Auto Trait Implementations§

§

impl<F1, F2> Freeze for Zip<F1, F2>
where F1: Freeze, F2: Freeze, <F1 as Future>::Output: Freeze, <F2 as Future>::Output: Freeze,

§

impl<F1, F2> RefUnwindSafe for Zip<F1, F2>

§

impl<F1, F2> Send for Zip<F1, F2>
where 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,

§

impl<F1, F2> UnwindSafe for Zip<F1, F2>
where F1: UnwindSafe, F2: UnwindSafe, <F1 as Future>::Output: UnwindSafe, <F2 as Future>::Output: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<F> FutureExt for F
where F: Future + ?Sized,

source§

fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output>
where Self: Unpin,

A convenience for calling Future::poll() on !Unpin types.
source§

fn or<F>(self, other: F) -> Or<Self, F>
where Self: Sized, F: Future<Output = Self::Output>,

Returns the result of self or other future, preferring self if both are ready. Read more
source§

fn race<F>(self, other: F) -> Race<Self, F>
where Self: Sized, F: Future<Output = Self::Output>,

Returns the result of self or other future, with no preference if both are ready. Read more
source§

fn catch_unwind(self) -> CatchUnwind<Self>
where Self: Sized + UnwindSafe,

Catches panics while polling the future. Read more
source§

fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
where Self: Sized + Send + 'a,

Boxes the future and changes its type to dyn Future + Send + 'a. Read more
source§

fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>
where Self: Sized + 'a,

Boxes the future and changes its type to dyn Future + 'a. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F> IntoFuture for F
where F: Future,

§

type Output = <F as Future>::Output

The output that the future will produce on completion.
§

type IntoFuture = F

Which kind of future are we turning this into?
source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.