pub(crate) enum EitherProj<'__pin, L, R>where
Either<L, R>: '__pin,{
Left(Pin<&'__pin mut L>),
Right(Pin<&'__pin mut R>),
}
Variants§
Left(Pin<&'__pin mut L>)
Right(Pin<&'__pin mut R>)
Auto Trait Implementations§
impl<'__pin, L, R> Freeze for EitherProj<'__pin, L, R>
impl<'__pin, L, R> RefUnwindSafe for EitherProj<'__pin, L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<'__pin, L, R> Send for EitherProj<'__pin, L, R>
impl<'__pin, L, R> Sync for EitherProj<'__pin, L, R>
impl<'__pin, L, R> Unpin for EitherProj<'__pin, L, R>
impl<'__pin, L, R> !UnwindSafe for EitherProj<'__pin, L, R>
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