We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e87790e commit 8c722e3Copy full SHA for 8c722e3
crates/bevy_tasks/src/single_threaded_task_pool.rs
@@ -140,10 +140,7 @@ impl TaskPool {
140
/// caller can spawn long-running future writing results to some channel / event queue
141
/// and simply call detach on returned Task (like AssetServer does) - spawned future
142
/// can write results to some channel / event queue.
143
- pub fn spawn_async_compute<T>(
144
- &self,
145
- future: impl Future<Output = T> + 'static,
146
- ) -> FakeTask
+ pub fn spawn_async_compute<T>(&self, future: impl Future<Output = T> + 'static) -> FakeTask
147
where
148
T: Send + 'static,
149
{
0 commit comments