[][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

impl<'a> Send for GitCheckConfiguration<'a>

impl<'a> Sync for GitCheckConfiguration<'a>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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