pub enum EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M> {
Show 13 variants
A {
inner: A,
},
B {
inner: B,
},
C {
inner: C,
},
D {
inner: D,
},
E {
inner: E,
},
F {
inner: F,
},
G {
inner: G,
},
H {
inner: H,
},
I {
inner: I,
},
J {
inner: J,
},
K {
inner: K,
},
L {
inner: L,
},
M {
inner: M,
},
}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: HI
Fields
§
inner: IJ
Fields
§
inner: JK
Fields
§
inner: KL
Fields
§
inner: LM
Fields
§
inner: MTrait Implementations§
Source§impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Future for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Future for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
Source§type Output = EitherOf13<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output>
type Output = EitherOf13<<A as Future>::Output, <B as Future>::Output, <C as Future>::Output, <D as Future>::Output, <E as Future>::Output, <F as Future>::Output, <G as Future>::Output, <H as Future>::Output, <I as Future>::Output, <J as Future>::Output, <K as Future>::Output, <L as Future>::Output, <M as Future>::Output>
The type of value produced on completion.
impl<'__pin, A, B, C, D, E, F, G, H, I, J, K, L, M> Unpin for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>where
PinnedFieldsOf<__Origin<'__pin, A, B, C, D, E, F, G, H, I, J, K, L, M>>: Unpin,
Auto Trait Implementations§
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Freeze for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> RefUnwindSafe for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>where
A: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
G: RefUnwindSafe,
H: RefUnwindSafe,
I: RefUnwindSafe,
J: RefUnwindSafe,
K: RefUnwindSafe,
L: RefUnwindSafe,
M: RefUnwindSafe,
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Send for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Sync for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> UnwindSafe for EitherOf13Future<A, B, C, D, E, F, G, H, I, J, K, L, M>where
A: UnwindSafe,
B: UnwindSafe,
C: UnwindSafe,
D: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
G: UnwindSafe,
H: UnwindSafe,
I: UnwindSafe,
J: UnwindSafe,
K: UnwindSafe,
L: UnwindSafe,
M: 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