Trait Rule

Source
pub trait Rule {
    // Required method
    fn fix_file_coverage(
        &self,
        source: &SourceCode,
        file_cov: &mut FileCoverage,
    );
}

Required Methods§

Source

fn fix_file_coverage(&self, source: &SourceCode, file_cov: &mut FileCoverage)

Implementors§