pub struct Executor01As03<Ex> { /* private fields */ }
Available on crate feature
compat
only.Trait Implementations§
source§impl<Ex: Clone> Clone for Executor01As03<Ex>
impl<Ex: Clone> Clone for Executor01As03<Ex>
source§fn clone(&self) -> Executor01As03<Ex>
fn clone(&self) -> Executor01As03<Ex>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<Ex: Debug> Debug for Executor01As03<Ex>
impl<Ex: Debug> Debug for Executor01As03<Ex>
source§impl<Ex> Spawn for Executor01As03<Ex>
impl<Ex> Spawn for Executor01As03<Ex>
Auto Trait Implementations§
impl<Ex> Freeze for Executor01As03<Ex>where
Ex: Freeze,
impl<Ex> RefUnwindSafe for Executor01As03<Ex>where
Ex: RefUnwindSafe,
impl<Ex> Send for Executor01As03<Ex>where
Ex: Send,
impl<Ex> Sync for Executor01As03<Ex>where
Ex: Sync,
impl<Ex> Unpin for Executor01As03<Ex>where
Ex: Unpin,
impl<Ex> UnwindSafe for Executor01As03<Ex>where
Ex: UnwindSafe,
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
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Sp> SpawnExt for Sp
impl<Sp> SpawnExt for Sp
source§fn spawn<Fut>(&self, future: Fut) -> Result<(), SpawnError>
fn spawn<Fut>(&self, future: Fut) -> Result<(), SpawnError>
Spawns a task that polls the given future with output
()
to
completion. Read moresource§fn spawn_with_handle<Fut>(
&self,
future: Fut,
) -> Result<RemoteHandle<Fut::Output>, SpawnError>
fn spawn_with_handle<Fut>( &self, future: Fut, ) -> Result<RemoteHandle<Fut::Output>, SpawnError>
Available on crate feature
channel
only.Spawns a task that polls the given future to completion and returns a
future that resolves to the spawned future’s output. Read more