[][src]Trait git_checks_core::BranchCheck

pub trait BranchCheck: Send + Sync {
    fn name(&self) -> &str;
fn check(
        &self,
        ctx: &CheckGitContext,
        commit: &CommitId
    ) -> Result<CheckResult, Box<dyn Error>>; }

Interface for checks which runs once for the entire branch.

This is intended for checks which do not need to check the content, but instead, look at metadata such as the author or the topology of the branch.

Required methods

fn name(&self) -> &str

The name of the check.

fn check(
    &self,
    ctx: &CheckGitContext,
    commit: &CommitId
) -> Result<CheckResult, Box<dyn Error>>

Run the check.

Loading content...

Implementors

Loading content...