diff options
author | 2025-02-09 21:05:42 +0100 | |
---|---|---|
committer | 2025-02-09 21:05:42 +0100 | |
commit | 7ba2e3913395b212c7789569e1d683e7766cc348 (patch) | |
tree | beffc5adf4f482adcc6b3f87787137b976e33521 /runtime | |
parent | c8981d00963dac0dc03e6351255ba8823519162c (diff) | |
download | iced-7ba2e3913395b212c7789569e1d683e7766cc348.tar.gz iced-7ba2e3913395b212c7789569e1d683e7766cc348.tar.bz2 iced-7ba2e3913395b212c7789569e1d683e7766cc348.zip |
Update `sipper` and relax `Send` requirements
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/task.rs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs index fb46ca45..989f0ed5 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -63,18 +63,15 @@ impl<T> Task<T> { /// progress with the first closure and the output with the second one. pub fn sip<S, Output, Progress>( sipper: S, - on_progress: impl Fn(Progress) -> T + Send + 'static, - on_output: impl FnOnce(Output) -> T + Send + 'static, + on_progress: impl Fn(Progress) -> T + MaybeSend + 'static, + on_output: impl FnOnce(Output) -> T + MaybeSend + 'static, ) -> Self where - S: Sipper<Output, Progress> + Send + 'static, - S::Future: Send + 'static, - Output: Send, - Progress: Send, - T: Send + 'static, + S: Sipper<Output, Progress> + MaybeSend + 'static, + T: MaybeSend + 'static, { Self::stream(stream(sipper::sipper(move |sender| async move { - on_output(sipper.map(on_progress).run(sender).await) + on_output(sipper.with(on_progress).run(sender).await) }))) } |