pub enum Either<L, R> {
Left(L),
Right(R),
}
Expand description
A sum type that always holds either a value of type L
or R
.
§Examples
use kernel::types::Either;
let left_value: Either<i32, &str> = Either::Left(7);
let right_value: Either<i32, &str> = Either::Right("right value");
Variants§
Left(L)
Constructs an instance of Either
containing a value of type L
.
Right(R)
Constructs an instance of Either
containing a value of type R
.
Auto Trait Implementations§
impl<L, R> Freeze for Either<L, R>
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> Unpin 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