Skip to content

Instantly share code, notes, and snippets.

@glommer
Created April 29, 2021 21:01
Show Gist options
  • Save glommer/0d1a419a8fcf4d7e1cad95c8803149da to your computer and use it in GitHub Desktop.
Save glommer/0d1a419a8fcf4d7e1cad95c8803149da to your computer and use it in GitHub Desktop.
pub fn spawn<F, T>(f: F) -> JoinHandle<T>
where
F: FnOnce() -> T,
F: Send + 'static,
T: Send + 'static,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment