pub trait Observer: Send + Sync { // Provided method fn prefs_changed(&self, _changes: &[(&'static str, PrefValue)]) { ... } }