pub struct ContributionChecker { /* private fields */ }Expand description
Main contribution checker and validator
Implementations§
Source§impl ContributionChecker
impl ContributionChecker
Sourcepub fn with_config(config: ContributionConfig) -> Self
pub fn with_config(config: ContributionConfig) -> Self
Create a contribution checker with custom configuration
Sourcepub fn check_contribution(
&self,
path: impl AsRef<Path>,
criteria: &ReviewCriteria,
) -> Result<ContributionResult>
pub fn check_contribution( &self, path: impl AsRef<Path>, criteria: &ReviewCriteria, ) -> Result<ContributionResult>
Check a contribution against all quality gates
Trait Implementations§
Source§impl Debug for ContributionChecker
impl Debug for ContributionChecker
Auto Trait Implementations§
impl Freeze for ContributionChecker
impl RefUnwindSafe for ContributionChecker
impl Send for ContributionChecker
impl Sync for ContributionChecker
impl Unpin for ContributionChecker
impl UnwindSafe for ContributionChecker
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more