pub struct FuturesExecutor { /* private fields */ }Available on crate feature
executor only.Expand description
The implementation of Executor syscall.
This type using ThreadPool as inner task executor.
Implementations§
Trait Implementations§
Source§impl Executor for FuturesExecutor
impl Executor for FuturesExecutor
Source§fn spawn_boxed(&self, fut: BoxFuture<'static, ()>)
fn spawn_boxed(&self, fut: BoxFuture<'static, ()>)
Spawns a task that polls the given
boxed future with output () to completion.Auto Trait Implementations§
impl Freeze for FuturesExecutor
impl RefUnwindSafe for FuturesExecutor
impl Send for FuturesExecutor
impl Sync for FuturesExecutor
impl Unpin for FuturesExecutor
impl UnwindSafe for FuturesExecutor
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
Mutably borrows from an owned value. Read more