Spawns a new thread.
impl Builder { fn spawn<F>(self, f: F) -> Result<(), Errno> where F: FnOnce() -> () + Send + 'static, }
The closure that will be run in the new thread.