pub trait FrameworkComponent:
Send
+ Sync
+ 'static {
// Provided methods
fn type_name(&self) -> &'static str { ... }
fn type_id(&self) -> TypeId { ... }
}
Expand description
Core trait for framework components that can be registered and managed