Struct tokio::executor::current_thread::TaskExecutor [−][src]
pub struct TaskExecutor { /* fields omitted */ }
Executes futures on the current thread.
All futures executed using this executor will be executed on the current
thread. As such, run
will wait for these futures to complete before
returning.
For more details, see the module level documentation.
Methods
impl TaskExecutor
[src]
impl TaskExecutor
pub fn current() -> TaskExecutor
[src]
pub fn current() -> TaskExecutor
Returns an executor that executes futures on the current thread.
The user of TaskExecutor
must ensure that when a future is submitted,
that it is done within the context of a call to run
.
For more details, see the module level documentation.
pub fn spawn_local(
&mut self,
future: Box<Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
[src]
pub fn spawn_local(
&mut self,
future: Box<Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
Spawn a future onto the current CurrentThread
instance.
Trait Implementations
impl Debug for TaskExecutor
[src]
impl Debug for TaskExecutor
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for TaskExecutor
[src]
impl Clone for TaskExecutor
fn clone(&self) -> TaskExecutor
[src]
fn clone(&self) -> TaskExecutor
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Executor for TaskExecutor
[src]
impl Executor for TaskExecutor
fn spawn(
&mut self,
future: Box<Future<Item = (), Error = ()> + Send>
) -> Result<(), SpawnError>
[src]
fn spawn(
&mut self,
future: Box<Future<Item = (), Error = ()> + Send>
) -> Result<(), SpawnError>
Spawns a future object to run on this executor. Read more
fn status(&self) -> Result<(), SpawnError>
[src]
fn status(&self) -> Result<(), SpawnError>
Provides a best effort hint to whether or not spawn
will succeed. Read more
impl<F> Executor<F> for TaskExecutor where
F: Future<Item = (), Error = ()> + 'static,
[src]
impl<F> Executor<F> for TaskExecutor where
F: Future<Item = (), Error = ()> + 'static,
Auto Trait Implementations
impl !Send for TaskExecutor
impl !Send for TaskExecutor
impl !Sync for TaskExecutor
impl !Sync for TaskExecutor