summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-18 22:08:43 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-18 22:08:43 +0200
commit1ada297b082ffa79f7e56c14af20b359af745a2c (patch)
tree2af10e3e3efe0417379dd890fcd744e4fb1c517c /src
parent9e5afc54cea74c6d06a9d3f1ae0f7372ff1e13cb (diff)
downloadiced-1ada297b082ffa79f7e56c14af20b359af745a2c.tar.gz
iced-1ada297b082ffa79f7e56c14af20b359af745a2c.tar.bz2
iced-1ada297b082ffa79f7e56c14af20b359af745a2c.zip
Explain `Action` pattern a bit in The Pocket Guide
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0ff9e3aa..91d8e53f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -456,8 +456,16 @@
//! }
//! ```
//!
-//! Functor methods like [`Task::map`], [`Element::map`], and [`Subscription::map`] make this
-//! approach seamless.
+//! The `update` method of a screen can return an `Action` enum that can be leveraged by the parent to
+//! execute a task or transition to a completely different screen altogether. The variants of `Action` can
+//! have associated data. For instance, in the example above, the `Conversation` screen is created when
+//! `Contacts::update` returns an `Action::Chat` with the selected contact.
+//!
+//! Effectively, this approach lets you "tell a story" to connect different screens together in a type safe
+//! way.
+//!
+//! Furthermore, functor methods like [`Task::map`], [`Element::map`], and [`Subscription::map`] make composition
+//! seamless.
#![doc(
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/bdf0430880f5c29443f5f0a0ae4895866dfef4c6/docs/logo.svg"
)]