diff options
-rw-r--r-- | runtime/src/task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs index 710be5d9..fd5970ac 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -37,7 +37,7 @@ impl<T> Task<T> { /// output with the given closure. pub fn perform<A>( future: impl Future<Output = A> + MaybeSend + 'static, - f: impl Fn(A) -> T + MaybeSend + 'static, + f: impl FnOnce(A) -> T + MaybeSend + 'static, ) -> Self where T: MaybeSend + 'static, |