summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Andersen <ryco117@gmail.com>2025-03-04 22:39:38 -0800
committerLibravatar Ryan Andersen <ryco117@gmail.com>2025-03-04 22:39:38 -0800
commitb9ebf45a0344a9e1d21424ae23665c016b2ef64b (patch)
tree0efa7e84d84da346e7777dcc1d88559eb6f54c1a
parentbeddf49c76f3b43e7b33452831e1293cad28fd89 (diff)
downloadiced-b9ebf45a0344a9e1d21424ae23665c016b2ef64b.tar.gz
iced-b9ebf45a0344a9e1d21424ae23665c016b2ef64b.tar.bz2
iced-b9ebf45a0344a9e1d21424ae23665c016b2ef64b.zip
Relax perform from Fn to more general FnOnce
-rw-r--r--runtime/src/task.rs2
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,