[go: up one dir, main page]

spawn

Function spawn 

Source
pub fn spawn<F, T>(future: F) -> RecoverableHandle<T> 
where F: Future<Output = T> + Send + 'static, T: Send + 'static,
Expand description

Spawn a given future onto the executor from the global level.

§Example

use bastion::executor::{spawn, run};
let handle = spawn(async {
    panic!("test");
});
run(handle);