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 more