pub trait ModuleValidator {
    fn validate(self, module: &Module) -> Result<bool, String>;
}

Required Methods

Implementors