1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! A predictable reactive framework for Rust apps.
//!
//! # Overview
//! Reducer is inspired by the
//! [Flux pattern], popular in the JavaScript community as an effective idiom to build
//! scalable and maintainable apps.
//!
//! The core mental model behind Reducer is the unidirectional data flow depicted below.
//!
//! ```notrust
//! Reducer |
//! +------------------------------------|-----------------+
//! | | |
//! | ---------- --------- | -------- |
//! +--> | Action | -----> | State | --- | ---> | View | --+
//! ---------- --------- | --------
//! |
//! ```
//!
//! The _view_, often a \[G\]UI, [dispatches] _actions_ on the [_store_], which in turn
//! [updates] its internal state and [notifies] back the _view_.
//!
//! [Flux pattern]: https://facebook.github.io/flux/docs/in-depth-overview/
//! [dispatches]: Store::dispatch
//! [_store_]: Store
//! [updates]: Reducer::reduce
//! [notifies]: Reactor::react
//!
//! # Optional Features
//!
//! * `alloc` (enabled by default)
//!
//! Controls whether [crate `alloc`] is linked.
//!
//! * `std` (enabled by default; implies `alloc`)
//!
//! Controls whether [crate `std`] is linked.
//!
//! * `async` (enabled by default; implies `std`)
//!
//! Enables integration with [futures-rs](https://crates.io/crates/futures).
//!
//! [crate `alloc`]: https://doc.rust-lang.org/alloc/
//! [crate `std`]: https://doc.rust-lang.org/std/
extern crate alloc;
extern crate std;
pub use crate*;
pub use crate*;
pub use crate*;