[][src]Enum eff::either::Either

pub enum Either<L, R> {
    A(L),
    B(R),
}

An effectful computation that is either of the two underlying ones

Variants

A(L)B(R)

Trait Implementations

impl<Output, Effect, L, R> Effectful for Either<L, R> where
    L: Effectful<Output = Output, Effect = Effect>,
    R: Effectful<Output = Output, Effect = Effect>, 
[src]

type Output = Output

The type of the final result

type Effect = Effect

The type of the effects this computation will produce

fn handle<H, HC, Effect, I>(self, handler: H) -> Handled<Self, H, HC, Effect, I> where
    Self: Sized,
    H: FnMut(HandlerArgument<Self::Output, Effect>) -> HC,
    Self::Effect: Subset<Effect, I>, 
[src]

Takes a value handler and an effect handler and creates an effectful computation with the effects handled Read more

fn embed<Target, Indices>(self) -> EmbedEffect<Self, Target, Indices> where
    Self: Sized
[src]

Creates an effectful computation whose effect is a superset of that of this one

fn left<R>(self) -> Either<Self, R> where
    Self: Sized
[src]

Combine this and the other computation with the same signature

fn right<L>(self) -> Either<L, Self> where
    Self: Sized
[src]

Combine this and the other computation with the same signature

fn boxed<'a>(
    self
) -> Pin<Box<dyn Effectful<Output = Self::Output, Effect = Self::Effect> + 'a>> where
    Self: Sized + 'a, 
[src]

Create a boxed computation Read more

fn block_on(self) -> Self::Output where
    Self: Sized + Effectful<Effect = !>, 
[src]

Run the computation to completion on the current thread Read more

Auto Trait Implementations

impl<L, R> Send for Either<L, R> where
    L: Send,
    R: Send

impl<L, R> Sync for Either<L, R> where
    L: Sync,
    R: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]