rust-elm 0.6.0

Elm Architecture for Rust: composable reducers, pure effects, async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tokio-backed live runtime: bus, store, effect interpreter, subscriptions.

mod config;
pub(crate) mod dispatch;
mod engine;
mod rw_engine;
pub mod binding;
pub(crate) mod interpreter;
pub(crate) mod state_access;
pub mod store;
pub mod rw_store;
pub mod subscription;

pub use config::RuntimeConfig;
pub use engine::Runtime;
pub use rw_engine::RwRuntime;