pub trait RegisterStatbarSubject {
// Required methods
fn add_statbar_component_observer<T: StatbarObservable + Component>(
&mut self,
) -> &mut Self;
fn add_statbar_resource_observer<T: StatbarObservable + 'static + Send + Sync>(
&mut self,
) -> &mut Self;
fn add_standalone_statbar<T: 'static>(&mut self) -> &mut Self;
}Required Methods§
fn add_statbar_component_observer<T: StatbarObservable + Component>( &mut self, ) -> &mut Self
fn add_statbar_resource_observer<T: StatbarObservable + 'static + Send + Sync>( &mut self, ) -> &mut Self
fn add_standalone_statbar<T: 'static>(&mut self) -> &mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".