pub trait RegistryExt: 'static {
    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);
}

Required Methods

Implementors