Enum git_checks::checks::ChangelogStyle[][src]

pub enum ChangelogStyle {
    Directory {
        path: String,
        extension: Option<String>,
    },
    File {
        path: String,
    },
}

The style of changelog management in use.

Variants

A directory stores a file per changelog entry.

Fields of Directory

The path to the directory containing changelog entry files.

The extension used for changelog files.

A file contains the changelog entries for a project.

Fields of File

The path to the changelog.

Methods

impl ChangelogStyle
[src]

A changelog stored in a file at a given path.

A directory containing many files, each with a changelog entry.

Entries may also be required to have a given extension.

Trait Implementations

impl Debug for ChangelogStyle
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations