summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-13 07:03:52 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-13 07:03:52 +0100
commit0cbd6668759c8246c5224b5876e7ef0888fe445f (patch)
tree0da6149ae1c9be912270b74261ad67b906474939 /src/sandbox.rs
parent361be7f6b7e93c7162281a107c3070b736ba692e (diff)
downloadiced-0cbd6668759c8246c5224b5876e7ef0888fe445f.tar.gz
iced-0cbd6668759c8246c5224b5876e7ef0888fe445f.tar.bz2
iced-0cbd6668759c8246c5224b5876e7ef0888fe445f.zip
Remove `Message: Clone` bound in `Sandbox`
Diffstat (limited to 'src/sandbox.rs')
-rw-r--r--src/sandbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs
index 75020b16..dda4c3f5 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -81,7 +81,7 @@ pub trait Sandbox {
/// The type of __messages__ your [`Sandbox`] will produce.
///
/// [`Sandbox`]: trait.Sandbox.html
- type Message: std::fmt::Debug + Send + Clone;
+ type Message: std::fmt::Debug + Send;
/// Initializes the [`Sandbox`].
///