[−][src]Struct tokio_current_thread::TaskExecutor
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][−]
pub fn current() -> TaskExecutor
[src][−]
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<dyn Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
[src][−]
&mut self,
future: Box<dyn Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
Spawn a future onto the current CurrentThread
instance.
Trait Implementations
impl Clone for TaskExecutor
[src][+]
impl Debug for TaskExecutor
[src][+]
impl<F> Executor<F> for TaskExecutor where
F: Future<Item = (), Error = ()> + 'static,
[src][+]
F: Future<Item = (), Error = ()> + 'static,
impl Executor for TaskExecutor
[src][+]
Auto Trait Implementations
impl !Send for TaskExecutor
impl !Sync for TaskExecutor
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][−]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)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> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,