Type Definition reactive_state::middleware::ReduceFn[][src]

type ReduceFn<State, Action, Event, Effect> = fn(_: &Store<State, Action, Event, Effect>, _: Option<&Action>) -> ReduceMiddlewareResult<Event, Effect>;
Expand description

Executes subsequent middleware and then runs the Reducer.