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

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

The typed context of the task

Methods

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

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

Retrieve a waker of the task

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

Trait Implementations

impl<E: Effect> Debug for TypedContext<E> where
    E::Output: Debug
[src]

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: Send

impl<E> Unpin for TypedContext<E>

impl<E> !UnwindSafe for TypedContext<E>

impl<E> !RefUnwindSafe for TypedContext<E>

Blanket Implementations

impl<T> EmbedRest<T, Zero> for T[src]

impl<Head, Tail, N, Rest> EmbedRest<Either<Head, Tail>, Succ<N>> for Rest where
    Head: Effect,
    Rest: EmbedRest<Tail, N>, 
[src]

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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