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