Observer

Type Alias Observer 

Source
pub type Observer<T> = Arc<dyn Fn(&T, &T) + Send + Sync>;
Expand description

Function type for observers that get called when property values change

Aliased Typeยง

pub struct Observer<T> { /* private fields */ }