pub fn parse_commit_msg<'a>(
i: &'a str,
) -> Result<Commit<'a>, VerboseError<&'a str>>
Expand description
Parses a conventional commit message.
ยงReturns
Ok(Commit)
if the parsing was successful, Err(VerboseError)
if something
went wrong during parsing.