gitbox 2.1.3

Git toolbox to simplify adoption of conventional commits and semantic version, among other things.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::conventional_commit_summary::ConventionalCommitSummary;

/**
This enum distinguish conventional commits (i.e. structured messages) and
free-form commits (any other commit).
This enum can be used when the given commits (usually as an input) do not
have a specific type.
See also [ConventionalCommitSummary].
*/
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum CommitSummary {
    Conventional(ConventionalCommitSummary),
    FreeForm(String),
}