pub enum Sel2<T1, T2> {
A(T1),
B(T2),
}
Variants§
Auto Trait Implementations§
impl<T1, T2> Freeze for Sel2<T1, T2>
impl<T1, T2> RefUnwindSafe for Sel2<T1, T2>where
T1: RefUnwindSafe,
T2: RefUnwindSafe,
impl<T1, T2> Send for Sel2<T1, T2>
impl<T1, T2> Sync for Sel2<T1, T2>
impl<T1, T2> Unpin for Sel2<T1, T2>
impl<T1, T2> UnwindSafe for Sel2<T1, T2>where
T1: UnwindSafe,
T2: 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