[][src]Crate reduxr

Structs

MiddlewareContext

The context in which middleware is executed.

Store

A redux store. Dispatching actions on the store will make the action pass through the middleware and finally the state will be reduced via the Reduce trait.

Traits

Reduce

Reduce trait that enables reducing self via an action. It is possibly to implement this trait for a different Action types. Action is usually an enum.

Type Definitions

Middleware

Middleware is a function that takes a MiddlewareContext struct as an argument.