pub enum Either6<A, B, C, D, E, F> {
A(A),
B(B),
C(C),
D(D),
E(E),
F(F),
}
Variants§
Trait Implementations§
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