Remove Clone bound on Application::Message

This commit is contained in:
Elliott Mahler 2020-01-12 19:21:38 -08:00
parent bad1bab9e8
commit 7f9e5765d2

View File

@ -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`].
///