1 2 3 4 5 6 7 8 9
use clap::ValueEnum; #[derive(Debug, PartialEq, Clone, Copy, ValueEnum)] pub enum LogFormat { #[clap(name = "human")] Human, #[clap(name = "github-actions")] GitHubActions, }