From 7f9e5765d25ce8fad6e8659b02686faee8147d70 Mon Sep 17 00:00:00 2001 From: Elliott Mahler Date: Sun, 12 Jan 2020 19:21:38 -0800 Subject: Remove Clone bound on Application::Message --- src/application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/application.rs b/src/application.rs index 7dd76774..5ea64ba8 100644 --- a/src/application.rs +++ b/src/application.rs @@ -83,7 +83,7 @@ pub trait Application: Sized { /// The type of __messages__ your [`Application`] will produce. /// /// [`Application`]: trait.Application.html - type Message: std::fmt::Debug + Send + Clone; + type Message: std::fmt::Debug + Send; /// Initializes the [`Application`]. /// -- cgit From 0cbd6668759c8246c5224b5876e7ef0888fe445f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 13 Jan 2020 07:03:52 +0100 Subject: Remove `Message: Clone` bound in `Sandbox` --- src/sandbox.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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`]. /// -- cgit