[][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 Unpin for Enter

impl !Sync for Enter

impl !UnwindSafe for Enter

impl !RefUnwindSafe for Enter

Blanket Implementations

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

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

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

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