Expand description
Shared state that can be accessed by many components.
Structs§
- Reducer
- A type that allows you to share information across your application easily.
- Shared
State - A type that allows you to share information across your application easily. Get immutable and mutable access to the data and subscribe to changes.
- Shared
State Read Guard - A guard that immutably dereferences
Data
. - Shared
State Write Guard - A guard that mutably dereferences
Data
. Once dropped all subscribers of theSharedState
will be notified.
Traits§
- Reducible
- A trait that implements a reducer function.