Expand description
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.
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.
Optional Features
-
alloc
(enabled by default)Controls whether crate
alloc
is linked. -
std
(enabled by default; impliesalloc
)Controls whether crate
std
is linked. -
async
(enabled by default; impliesstd
)Enables integration with futures-rs.
Structs
An adapter for [Sink
]s that behaves as an asynchronous Dispatcher
(requires async
).
A reactive state container.
Enums
Traits
Trait for types that allow dispatching actions.
Trait for types that react to state transitions.
Trait for types that represent the logical state of an application.