summaryrefslogtreecommitdiffstats
path: root/native/src/clipboard.rs
diff options
context:
space:
mode:
authorLibravatar 无限UCW <x-wuxian@qq.com>2022-08-12 01:57:05 +0800
committerLibravatar 无限UCW <x-wuxian@qq.com>2022-08-12 01:57:05 +0800
commitf21d1209aa576a3e597c100fa56afe554dc2babd (patch)
tree3b5ebd93ceff1d6d3b7c62dc5eba44dacbf17fff /native/src/clipboard.rs
parente209349c508fe67d4494cd512eb25899840a13fd (diff)
downloadiced-f21d1209aa576a3e597c100fa56afe554dc2babd.tar.gz
iced-f21d1209aa576a3e597c100fa56afe554dc2babd.tar.bz2
iced-f21d1209aa576a3e597c100fa56afe554dc2babd.zip
Relax `Fn` trait bounds in `Command` & `Action`
Diffstat (limited to '')
-rw-r--r--native/src/clipboard.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/clipboard.rs b/native/src/clipboard.rs
index c9105bc0..6a77334c 100644
--- a/native/src/clipboard.rs
+++ b/native/src/clipboard.rs
@@ -30,7 +30,7 @@ impl Clipboard for Null {
/// [`Command`]: crate::Command
pub enum Action<T> {
/// Read the clipboard and produce `T` with the result.
- Read(Box<dyn Fn(Option<String>) -> T>),
+ Read(Box<dyn FnOnce(Option<String>) -> T>),
/// Write the given contents to the clipboard.
Write(String),
@@ -40,7 +40,7 @@ impl<T> Action<T> {
/// Maps the output of a clipboard [`Action`] using the provided closure.
pub fn map<A>(
self,
- f: impl Fn(T) -> A + 'static + MaybeSend + Sync,
+ f: impl FnOnce(T) -> A + 'static + MaybeSend + Sync,
) -> Action<A>
where
T: 'static,