1 2 3 4 5 6 7 8 9
/// Output mode for commands #[derive(Debug, Clone, Copy, Default, clap::ValueEnum)] pub enum OutputMode { /// Pretty output with tables rendered in the terminal #[default] Pretty, /// Raw json output for further use with pipes etc Json, }