tokio_current_thread

Struct Entered

Source
pub struct Entered<'a, P: Park + 'a> { /* private fields */ }
Expand description

A CurrentThread instance bound to a supplied execution context.

Implementations§

Source§

impl<'a, P: Park> Entered<'a, P>

Source

pub fn spawn<F>(&mut self, future: F) -> &mut Self
where F: Future<Item = (), Error = ()> + 'static,

Spawn the future on the executor.

This internally queues the future to be executed once run is called.

Source

pub fn block_on<F>( &mut self, future: F, ) -> Result<F::Item, BlockError<F::Error>>
where F: Future,

Synchronously waits for the provided future to complete.

This function can be used to synchronously block the current thread until the provided future has resolved either successfully or with an error. The result of the future is then returned from this function call.

Note that this function will also execute any spawned futures on the current thread, but will not block until these other spawned futures have completed.

The caller is responsible for ensuring that other spawned futures complete execution.

Source

pub fn run(&mut self) -> Result<(), RunError>

Run the executor to completion, blocking the thread until all spawned futures have completed.

Source

pub fn run_timeout(&mut self, duration: Duration) -> Result<(), RunTimeoutError>

Run the executor to completion, blocking the thread until all spawned futures have completed or duration time has elapsed.

Source

pub fn turn(&mut self, duration: Option<Duration>) -> Result<Turn, TurnError>

Perform a single iteration of the event loop.

This function blocks the current thread even if the executor is idle.

Source

pub fn get_park(&self) -> &P

Returns a reference to the underlying Park instance.

Source

pub fn get_park_mut(&mut self) -> &mut P

Returns a mutable reference to the underlying Park instance.

Trait Implementations§

Source§

impl<'a, P: Park> Debug for Entered<'a, P>

Source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, P> Freeze for Entered<'a, P>

§

impl<'a, P> !RefUnwindSafe for Entered<'a, P>

§

impl<'a, P> !Send for Entered<'a, P>

§

impl<'a, P> !Sync for Entered<'a, P>

§

impl<'a, P> Unpin for Entered<'a, P>

§

impl<'a, P> !UnwindSafe for Entered<'a, P>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.