summaryrefslogtreecommitdiffstats
path: root/native/src/program.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/program.rs')
-rw-r--r--native/src/program.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/program.rs b/native/src/program.rs
index 066c29d8..75fab094 100644
--- a/native/src/program.rs
+++ b/native/src/program.rs
@@ -11,7 +11,7 @@ pub trait Program: Sized {
type Renderer: Renderer;
/// The type of __messages__ your [`Program`] will produce.
- type Message: std::fmt::Debug + Send;
+ type Message: std::fmt::Debug + Clone + Send;
/// The type of [`Clipboard`] your [`Program`] will use.
type Clipboard: Clipboard;