Enum xitca_http::body::Either
source · pub enum Either<L, R> {
L {
inner: L,
},
R {
inner: R,
},
}Variants§
Implementations§
Trait Implementations§
source§impl<L, R, T, E, E2> Stream for Either<L, R>
impl<L, R, T, E, E2> Stream for Either<L, R>
impl<'__pin, L, R> Unpin for Either<L, R>where
__Origin<'__pin, L, R>: Unpin,
Auto Trait Implementations§
impl<L, R> RefUnwindSafe for Either<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for Either<L, R>
impl<L, R> Sync for Either<L, R>
impl<L, R> UnwindSafe for Either<L, R>where
L: UnwindSafe,
R: 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