pub enum EitherOf8Future<A, B, C, D, E, F, G, H> {
A {
inner: A,
},
B {
inner: B,
},
C {
inner: C,
},
D {
inner: D,
},
E {
inner: E,
},
F {
inner: F,
},
G {
inner: G,
},
H {
inner: H,
},
}Variants§
A
Fields
§
inner: AB
Fields
§
inner: BC
Fields
§
inner: CD
Fields
§
inner: DE
Fields
§
inner: EF
Fields
§
inner: FG
Fields
§
inner: GH
Fields
§
inner: HTrait Implementations§
Source§impl<A, B, C, D, E, F, G, H> Future for EitherOf8Future<A, B, C, D, E, F, G, H>
impl<A, B, C, D, E, F, G, H> Future for EitherOf8Future<A, B, C, D, E, F, G, H>
impl<'__pin, A, B, C, D, E, F, G, H> Unpin for EitherOf8Future<A, B, C, D, E, F, G, H>where
PinnedFieldsOf<__Origin<'__pin, A, B, C, D, E, F, G, H>>: Unpin,
Auto Trait Implementations§
impl<A, B, C, D, E, F, G, H> Freeze for EitherOf8Future<A, B, C, D, E, F, G, H>
impl<A, B, C, D, E, F, G, H> RefUnwindSafe for EitherOf8Future<A, B, C, D, E, F, G, H>where
A: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
G: RefUnwindSafe,
H: RefUnwindSafe,
impl<A, B, C, D, E, F, G, H> Send for EitherOf8Future<A, B, C, D, E, F, G, H>
impl<A, B, C, D, E, F, G, H> Sync for EitherOf8Future<A, B, C, D, E, F, G, H>
impl<A, B, C, D, E, F, G, H> UnwindSafe for EitherOf8Future<A, B, C, D, E, F, G, H>where
A: UnwindSafe,
B: UnwindSafe,
C: UnwindSafe,
D: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
G: UnwindSafe,
H: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more