diff options
Diffstat (limited to 'src/sandbox.rs')
-rw-r--r-- | src/sandbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs index a0bb316e..1b23196f 100644 --- a/src/sandbox.rs +++ b/src/sandbox.rs @@ -87,7 +87,7 @@ use crate::{ /// ``` pub trait Sandbox { /// The type of __messages__ your [`Sandbox`] will produce. - type Message: std::fmt::Debug + Clone + Send; + type Message: std::fmt::Debug + Send; /// Initializes the [`Sandbox`]. /// |