pub trait ContentCheck: Debug + Send + Sync {
    // Required methods
    fn name(&self) -> &str;
    fn check(
        &self,
        ctx: &CheckGitContext,
        content: &dyn Content
    ) -> Result<CheckResult, Box<dyn Error>>;
}
Expand description

Interface for checks which check the content of files.

These checks are not given any metadata, but only information about the content of a commit or topic.

Required Methods§

source

fn name(&self) -> &str

The name of the check.

source

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

Run the check.

Implementors§