[][src]Struct tokio_executor::Enter

pub struct Enter { /* fields omitted */ }
[]

Represents an executor context.

For more details, see enter documentation

Methods

impl Enter[src][]

pub fn on_exit<F>(&mut self, f: F) where
    F: FnOnce() + 'static, 
[src][]

Register a callback to be invoked if and when the thread ceased to act as an executor.

pub fn make_permanent(self)[src][]

Treat the remainder of execution on this thread as part of an executor; used mostly for thread pool worker threads.

All registered on_exit callbacks are dropped without being invoked.

pub fn block_on<F: Future>(&mut self, f: F) -> Result<F::Item, F::Error>[src][]

Blocks the thread on the specified future, returning the value with which that future completes.

Trait Implementations

impl Drop for Enter[src][+]

impl Debug for Enter[src][+]

Auto Trait Implementations

impl !Send for Enter

impl !Sync for Enter

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
    T: From<U>, 
[src][]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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