Enum git_checks::Severity [] [src]

pub enum Severity {
    Warning,
    Error,
    Alert {
        blocking: bool,
    },
}

The severity of a message.

Variants

The message is a warning.

The message is an error.

The message should be brought to the attention of project maintainers.

Fields of Alert

Whether the checks should fail due to the message or not.