pub trait Runner<State: 'static + Send + Sync> {
// Required method
fn use_state<F: 'static + FnOnce() -> State>(self, init: F) -> Option<Self>
where Self: Sized;
}
Expand description
Provides the ability to initialize global application state for observation.