Spawn Command futures in iced_web

This commit is contained in:
Héctor Ramón Jiménez 2019-11-24 11:25:14 +01:00
parent 5b8f6948bb
commit 9f3abe9202
6 changed files with 36 additions and 18 deletions

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;
type Message: std::fmt::Debug + Send + Clone;
/// Initializes the [`Application`].
///