summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 11:25:14 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 11:26:28 +0100
commit9f3abe920271996cc4a9c533ad5e0e75e3d18a3d (patch)
tree88b04f05a51e61f1a9083e3a63df91665123ea30 /src/sandbox.rs
parent5b8f6948bb8b995b54de66572644da2885b7fcd8 (diff)
downloadiced-9f3abe920271996cc4a9c533ad5e0e75e3d18a3d.tar.gz
iced-9f3abe920271996cc4a9c533ad5e0e75e3d18a3d.tar.bz2
iced-9f3abe920271996cc4a9c533ad5e0e75e3d18a3d.zip
Spawn `Command` futures in `iced_web`
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 698578f4..60e3be14 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;
+ type Message: std::fmt::Debug + Send + Clone;
/// Initializes the [`Sandbox`].
///