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