diff options
author | 2020-01-12 19:21:38 -0800 | |
---|---|---|
committer | 2020-01-12 19:21:38 -0800 | |
commit | 7f9e5765d25ce8fad6e8659b02686faee8147d70 (patch) | |
tree | 8574dce3d0b7d426a566ee25c4ad70630a5a7ce5 /src/application.rs | |
parent | bad1bab9e894f917e5bfc8bfccfe7763af6d1a67 (diff) | |
download | iced-7f9e5765d25ce8fad6e8659b02686faee8147d70.tar.gz iced-7f9e5765d25ce8fad6e8659b02686faee8147d70.tar.bz2 iced-7f9e5765d25ce8fad6e8659b02686faee8147d70.zip |
Remove Clone bound on Application::Message
Diffstat (limited to 'src/application.rs')
-rw-r--r-- | src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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`]. /// |