pub enum Either6<A, B, C, D, E, F> {
First(A),
Second(B),
Third(C),
Fourth(D),
Fifth(E),
Sixth(F),
}
Expand description
Result for select6
.
Variants§
First(A)
First future finished first.
Second(B)
Second future finished first.
Third(C)
Third future finished first.
Fourth(D)
Fourth future finished first.
Fifth(E)
Fifth future finished first.
Sixth(F)
Sixth future finished first.
Trait Implementations§
Source§impl<A: Clone, B: Clone, C: Clone, D: Clone, E: Clone, F: Clone> Clone for Either6<A, B, C, D, E, F>
impl<A: Clone, B: Clone, C: Clone, D: Clone, E: Clone, F: Clone> Clone for Either6<A, B, C, D, E, F>
Auto Trait Implementations§
impl<A, B, C, D, E, F> Freeze for Either6<A, B, C, D, E, F>
impl<A, B, C, D, E, F> RefUnwindSafe for Either6<A, B, C, D, E, F>where
A: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
impl<A, B, C, D, E, F> Send for Either6<A, B, C, D, E, F>
impl<A, B, C, D, E, F> Sync for Either6<A, B, C, D, E, F>
impl<A, B, C, D, E, F> Unpin for Either6<A, B, C, D, E, F>
impl<A, B, C, D, E, F> UnwindSafe for Either6<A, B, C, D, E, F>
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)