Trait crux::Middleware [] [src]

pub trait Middleware<T> where T: State + Clone {
    fn dispatch(&mut self,
            store: &mut Store<T>,
            next: &mut FnMut(T::Action),
            action: T::Action); }

Required Methods

Implementors