Skip to main content

AsyncSpawn

Trait AsyncSpawn 

Source
pub trait AsyncSpawn
where Self: Future<Output = ()> + Send + 'static,
{ // Required method fn spawn(self); }

Required Methods§

Source

fn spawn(self)

Implementors§

Source§

impl<F> AsyncSpawn for F
where F: Future<Output = ()> + Send + 'static,