[−][src]Struct tokio_executor::Enter
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]
F: FnOnce() + 'static,
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
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,