[][src]Trait sp_state_machine::CloneableSpawn

pub trait CloneableSpawn: Send + Sync + Spawn {
    fn clone(&self) -> Box<dyn CloneableSpawn + 'static>;
}
[]

Something that can spawn tasks and also can be cloned.

Required methods

fn clone(&self) -> Box<dyn CloneableSpawn + 'static>[]

Clone as heap-allocated handle.

Implementations on Foreign Types

impl CloneableSpawn for Executor[src][]

Implementors