[][src]Struct eff::context::TypedContext

pub struct TypedContext<E: Effect>(_);

The typed context of an computation

Methods

impl<E: Effect> TypedContext<E>[src]

pub fn waker(&self) -> Waker<E>[src]

pub fn continuation<R>(self) -> Continue<R>[src]

Create a Continue effect for the completion of the source computation

pub fn resume<R>(self, v: E::Output) -> Continue<R>[src]

Wake up the task and create a Continue effect

This method can be used to immediately resume the source computation

Auto Trait Implementations

impl<E> Send for TypedContext<E> where
    <E as Effect>::Output: Send

impl<E> Sync for TypedContext<E> where
    <E as Effect>::Output: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> BorrowMut for T where
    T: ?Sized
[src]

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