[][src]Struct eff::context::Waker

pub struct Waker<E: Effect> { /* fields omitted */ }

The waker of the task

Methods

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

pub fn wake(&self, v: E::Output)[src]

Wake up the task

pub fn try_wake(&self, v: E::Output) -> Result<(), E::Output>[src]

Wake up the task if no other wakers have already woken it up

Errors

Returns an error if another waker has already woken up the task

Trait Implementations

impl<E: Effect> Clone for Waker<E>[src]

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

Auto Trait Implementations

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

impl<E> Sync for Waker<E> where
    <E as Effect>::Output: Send

impl<E> Unpin for Waker<E>

impl<E> !UnwindSafe for Waker<E>

impl<E> !RefUnwindSafe for Waker<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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]