pub trait ModuleCreator {
    fn create(self) -> Result<Module, String>;
}

Required Methods

Implementors