Trait gclient::ext::sp_core::traits::SpawnNamed
pub trait SpawnNamed:
DynClone
+ Send
+ Sync {
// Required methods
fn spawn_blocking(
&self,
name: &'static str,
group: Option<&'static str>,
future: Pin<Box<dyn Future<Output = ()> + Send>>,
);
fn spawn(
&self,
name: &'static str,
group: Option<&'static str>,
future: Pin<Box<dyn Future<Output = ()> + Send>>,
);
}
Expand description
Something that can spawn tasks (blocking and non-blocking) with an assigned name and optional group.
Required Methods§
Trait Implementations§
§impl<'clone> Clone for Box<dyn SpawnNamed + 'clone>
impl<'clone> Clone for Box<dyn SpawnNamed + 'clone>
§fn clone(&self) -> Box<dyn SpawnNamed + 'clone>
fn clone(&self) -> Box<dyn SpawnNamed + 'clone>
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 more