Struct git_cliff_core::config::CommitParser [−][src]
pub struct CommitParser {
pub message: Option<Regex>,
pub body: Option<Regex>,
pub group: Option<String>,
pub default_scope: Option<String>,
pub skip: Option<bool>,
}
Expand description
Parser for grouping commits.
Fields
message: Option<Regex>
Regex for matching the commit message.
body: Option<Regex>
Regex for matching the commit body.
group: Option<String>
Group of the commit.
default_scope: Option<String>
Scope of the commit.
skip: Option<bool>
Whether to skip this commit group.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for CommitParser
impl Send for CommitParser
impl Sync for CommitParser
impl Unpin for CommitParser
impl UnwindSafe for CommitParser
Blanket Implementations
Mutably borrows from an owned value. Read more