pub enum E7<A, B, C, D, E, F, G> {
A(A),
B(B),
C(C),
D(D),
E(E),
F(F),
G(G),
}Variants§
Trait Implementations§
Source§impl<'a, A, B, C, D, E, F, G> From<&'a OneOf<(A, B, C, D, E, F, G)>> for E7<&'a A, &'a B, &'a C, &'a D, &'a E, &'a F, &'a G>where
A: 'static,
B: 'static,
C: 'static,
D: 'static,
E: 'static,
F: 'static,
G: 'static,
impl<'a, A, B, C, D, E, F, G> From<&'a OneOf<(A, B, C, D, E, F, G)>> for E7<&'a A, &'a B, &'a C, &'a D, &'a E, &'a F, &'a G>where
A: 'static,
B: 'static,
C: 'static,
D: 'static,
E: 'static,
F: 'static,
G: 'static,
Source§fn from(one_of: &'a OneOf<(A, B, C, D, E, F, G)>) -> Self
fn from(one_of: &'a OneOf<(A, B, C, D, E, F, G)>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<A, B, C, D, E, F, G> Freeze for E7<A, B, C, D, E, F, G>
impl<A, B, C, D, E, F, G> RefUnwindSafe for E7<A, B, C, D, E, F, G>where
A: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
G: RefUnwindSafe,
impl<A, B, C, D, E, F, G> Send for E7<A, B, C, D, E, F, G>
impl<A, B, C, D, E, F, G> Sync for E7<A, B, C, D, E, F, G>
impl<A, B, C, D, E, F, G> Unpin for E7<A, B, C, D, E, F, G>
impl<A, B, C, D, E, F, G> UnwindSafe for E7<A, B, C, D, E, F, G>where
A: UnwindSafe,
B: UnwindSafe,
C: UnwindSafe,
D: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
G: 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