pub struct ContributionChecker { /* private fields */ }Expand description
Main contribution checker and validator
Implementations§
Source§impl ContributionChecker
impl ContributionChecker
Sourcepub fn new() -> ContributionChecker
pub fn new() -> ContributionChecker
Create a new contribution checker with default configuration
Sourcepub fn with_config(config: ContributionConfig) -> ContributionChecker
pub fn with_config(config: ContributionConfig) -> ContributionChecker
Create a contribution checker with custom configuration
Sourcepub fn check_contribution(
&self,
path: impl AsRef<Path>,
criteria: &ReviewCriteria,
) -> Result<ContributionResult, SklearsError>
pub fn check_contribution( &self, path: impl AsRef<Path>, criteria: &ReviewCriteria, ) -> Result<ContributionResult, SklearsError>
Check a contribution against all quality gates
Trait Implementations§
Source§impl Debug for ContributionChecker
impl Debug for ContributionChecker
Source§impl Default for ContributionChecker
impl Default for ContributionChecker
Source§fn default() -> ContributionChecker
fn default() -> ContributionChecker
Returns the “default value” for a type. Read more
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