pub trait RegistryExt: 'static {
// Required methods
fn get_factory(&self, type_: Type) -> Option<ObjectFactory>;
fn get_factory_type(&self, type_: Type) -> Type;
fn set_factory_type(&self, type_: Type, factory_type: Type);
}
pub trait RegistryExt: 'static {
// Required methods
fn get_factory(&self, type_: Type) -> Option<ObjectFactory>;
fn get_factory_type(&self, type_: Type) -> Type;
fn set_factory_type(&self, type_: Type, factory_type: Type);
}