diff options
author | 2019-11-18 23:06:28 +0100 | |
---|---|---|
committer | 2019-11-18 23:06:28 +0100 | |
commit | 5adefdf6613bfe0738b573eab1d280fa041f5417 (patch) | |
tree | 60ff05b3ee9e896d9538de19bb2412c7d6e63c6a /src/lib.rs | |
parent | 54ffefcc0b8f4558a93ca51f044594db009bacc8 (diff) | |
parent | 63dbf078fefea444073813e834c2d35fa25eb3a7 (diff) | |
download | iced-5adefdf6613bfe0738b573eab1d280fa041f5417.tar.gz iced-5adefdf6613bfe0738b573eab1d280fa041f5417.tar.bz2 iced-5adefdf6613bfe0738b573eab1d280fa041f5417.zip |
Merge pull request #62 from hecrj/feature/async-actions
Async actions
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -4,21 +4,23 @@ mod platform; pub use platform::*; -pub trait Application { - type Message: std::fmt::Debug; +pub trait Application: Sized { + type Message: std::fmt::Debug + Send; + + fn new() -> (Self, Command<Self::Message>); fn title(&self) -> String; - fn update(&mut self, message: Self::Message); + fn update(&mut self, message: Self::Message) -> Command<Self::Message>; fn view(&mut self) -> Element<Self::Message>; - fn run(self) + fn run() where Self: 'static + Sized, { #[cfg(not(target_arch = "wasm32"))] - iced_winit::Application::run(Instance(self)); + <Instance<Self> as iced_winit::Application>::run(); #[cfg(target_arch = "wasm32")] iced_web::Application::run(Instance(self)); @@ -35,12 +37,18 @@ where type Renderer = Renderer; type Message = A::Message; + fn new() -> (Self, Command<A::Message>) { + let (app, command) = A::new(); + + (Instance(app), command) + } + fn title(&self) -> String { self.0.title() } - fn update(&mut self, message: Self::Message) { - self.0.update(message); + fn update(&mut self, message: Self::Message) -> Command<Self::Message> { + self.0.update(message) } fn view(&mut self) -> Element<Self::Message> { |