pub fn install_observer<O: Observer>(o: O)Expand description
Install the global observer. Called once at process start.
The argument is a constructed observer (typically
StandardObserver::builder().build()?); we wrap it in Arc and
store it under OBSERVER_GLOBAL.