summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor <hector@hecrj.dev>2025-03-05 12:09:43 +0100
committerLibravatar GitHub <noreply@github.com>2025-03-05 12:09:43 +0100
commit7e0d6a13fa9549006aa24b8102099feab37b0b1c (patch)
tree0efa7e84d84da346e7777dcc1d88559eb6f54c1a
parentbeddf49c76f3b43e7b33452831e1293cad28fd89 (diff)
parentb9ebf45a0344a9e1d21424ae23665c016b2ef64b (diff)
downloadiced-7e0d6a13fa9549006aa24b8102099feab37b0b1c.tar.gz
iced-7e0d6a13fa9549006aa24b8102099feab37b0b1c.tar.bz2
iced-7e0d6a13fa9549006aa24b8102099feab37b0b1c.zip
Merge pull request #2827 from ryco117/master
Relax Task::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,