Enum either_of::EitherOf12Future
source · pub enum EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L> {
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,
},
}
Variants§
A
Fields
§
inner: A
B
Fields
§
inner: B
C
Fields
§
inner: C
D
Fields
§
inner: D
E
Fields
§
inner: E
F
Fields
§
inner: F
G
Fields
§
inner: G
H
Fields
§
inner: H
I
Fields
§
inner: I
J
Fields
§
inner: J
K
Fields
§
inner: K
L
Fields
§
inner: L
Trait Implementations§
source§impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
§type Output = EitherOf12<<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>
type Output = EitherOf12<<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>
The type of value produced on completion.
impl<'__pin, A, B, C, D, E, F, G, H, I, J, K, L> Unpin for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>where
__Origin<'__pin, A, B, C, D, E, F, G, H, I, J, K, L>: Unpin,
Auto Trait Implementations§
impl<A, B, C, D, E, F, G, H, I, J, K, L> Freeze for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
impl<A, B, C, D, E, F, G, H, I, J, K, L> RefUnwindSafe for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>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,
impl<A, B, C, D, E, F, G, H, I, J, K, L> Send for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
impl<A, B, C, D, E, F, G, H, I, J, K, L> Sync for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>
impl<A, B, C, D, E, F, G, H, I, J, K, L> UnwindSafe for EitherOf12Future<A, B, C, D, E, F, G, H, I, J, K, L>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,
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,
§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