pub enum CommitProcessingOutcome {
Good(GoodCommit),
Bad(BadCommit),
}
Expand description
The outcome of processing a commit.
Variants§
Good(GoodCommit)
It was beneficial to process this commit.
Bad(BadCommit)
It wasn’t beneficial to process this commit. We wasted resources.
Trait Implementations§
source§impl Clone for CommitProcessingOutcome
impl Clone for CommitProcessingOutcome
source§fn clone(&self) -> CommitProcessingOutcome
fn clone(&self) -> CommitProcessingOutcome
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CommitProcessingOutcome
impl Debug for CommitProcessingOutcome
source§impl PartialEq<CommitProcessingOutcome> for CommitProcessingOutcome
impl PartialEq<CommitProcessingOutcome> for CommitProcessingOutcome
source§fn eq(&self, other: &CommitProcessingOutcome) -> bool
fn eq(&self, other: &CommitProcessingOutcome) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.