pub trait ChangeHandler
where Self: FnMut(QueryResult) + Send + 'static,
{ }
Expand description

An alias for FnMut(QueryResult) + Send + 'static. A change handler is called whenever an active store observer receives new results.

Implementors§

source§

impl<__: ?Sized> ChangeHandler for __
where Self: FnMut(QueryResult) + Send + 'static,