[][src]Struct git_checks::GitCheckConfiguration

pub struct GitCheckConfiguration<'a> { /* fields omitted */ }

Configuration for checks to run against a repository.

Methods

impl<'a> GitCheckConfiguration<'a>[src]

pub fn new() -> Self[src]

Create a new check configuration.

pub fn add_check(&mut self, check: &'a dyn Check) -> &mut Self[src]

Add a check to be run on every commit.

pub fn add_branch_check(&mut self, check: &'a dyn BranchCheck) -> &mut Self[src]

Add a check to be once for the entire branch.

pub fn add_topic_check(&mut self, check: &'a dyn TopicCheck) -> &mut Self[src]

Add a check to be once for the entire topic.

pub fn run_commit(
    &self,
    ctx: &GitContext,
    commit: &CommitId,
    owner: &Identity
) -> Result<CheckResult>
[src]

Run checks over a given commit.

pub fn run_topic<R>(
    &self,
    ctx: &GitContext,
    reason: R,
    base_branch: &CommitId,
    topic: &CommitId,
    owner: &Identity
) -> Result<TopicCheckResult> where
    R: AsRef<str>, 
[src]

Run checks over a given topic and collect results from the checks.

Trait Implementations

impl<'a> Default for GitCheckConfiguration<'a>[src]

impl<'a> Debug for GitCheckConfiguration<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]