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

An alias for FnMut(QueryResult) + Send + 'static. A closure which is called on each event

Implementors§

source§

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