summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2021-07-20 21:44:33 +0700
committerLibravatar GitHub <noreply@github.com>2021-07-20 21:44:33 +0700
commit8e29709b69ec0eae211887c8c6d91558175997b5 (patch)
treec6fe2b40d4be34867e61b9061d27ae44916ad4ab /src/sandbox.rs
parenta6dbaf0f5fd3590a8cfe92f924184c5d78e00152 (diff)
parent82db3c78b6cfa2cc55ece6ffa46811bfb5195f60 (diff)
downloadiced-8e29709b69ec0eae211887c8c6d91558175997b5.tar.gz
iced-8e29709b69ec0eae211887c8c6d91558175997b5.tar.bz2
iced-8e29709b69ec0eae211887c8c6d91558175997b5.zip
Merge pull request #945 from derezzedex/menu
feat: add menus
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 10b05a92..cb3cf624 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -88,7 +88,7 @@ use crate::{
/// ```
pub trait Sandbox {
/// The type of __messages__ your [`Sandbox`] will produce.
- type Message: std::fmt::Debug + Send;
+ type Message: std::fmt::Debug + Clone + Send;
/// Initializes the [`Sandbox`].
///