pub struct DefaultExecutor { /* private fields */ }
Expand description
Executes futures on the default executor for the current execution context.
DefaultExecutor
implements Executor
and can be used to spawn futures
without referencing a specific executor.
When an executor starts, it sets the DefaultExecutor
handle to point to an
executor (usually itself) that is used to spawn new tasks.
The current DefaultExecutor
reference is tracked using a thread-local
variable and is set using tokio_executor::with_default
Implementations§
Source§impl DefaultExecutor
impl DefaultExecutor
Sourcepub fn current() -> DefaultExecutor
pub fn current() -> DefaultExecutor
Returns a handle to the default executor for the current context.
Futures may be spawned onto the default executor using this handle.
The returned handle will reference whichever executor is configured as
the default at the time spawn
is called. This enables
DefaultExecutor::current()
to be called before an execution context is
setup, then passed into an execution context before it is used.
This is also true for sending the handle across threads, so calling
DefaultExecutor::current()
on thread A and then sending the result to
thread B will not reference the default executor that was set on thread A.
Trait Implementations§
Source§impl Clone for DefaultExecutor
impl Clone for DefaultExecutor
Source§fn clone(&self) -> DefaultExecutor
fn clone(&self) -> DefaultExecutor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DefaultExecutor
impl Debug for DefaultExecutor
Source§impl<T> Executor<T> for DefaultExecutor
impl<T> Executor<T> for DefaultExecutor
Source§impl Executor for DefaultExecutor
impl Executor for DefaultExecutor
Source§impl<T> TypedExecutor<T> for DefaultExecutor
impl<T> TypedExecutor<T> for DefaultExecutor
Auto Trait Implementations§
impl Freeze for DefaultExecutor
impl RefUnwindSafe for DefaultExecutor
impl Send for DefaultExecutor
impl Sync for DefaultExecutor
impl Unpin for DefaultExecutor
impl UnwindSafe for DefaultExecutor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)