Crate sovran_state

Crate sovran_state 

Source
Expand description

A simple state management library inspired by Redux, supporting multiple state types.

Structs§

Store
The Store struct holding multiple containers for different state types.

Enums§

StoreError
Enum representing different error types that can occur within the store.

Traits§

Action
Trait that all action types must implement. Actions should define how they transform the state.
State
Trait that all state types must implement. States must be clonable, debuggable and thread-safe.

Type Aliases§

SubscriberId