1/// Output format for serialized reports.
2#[derive(Clone, Debug)]
3pub enum OutputFormat {
4/// Human-readable text output
5Text,
6/// Machine-readable JSON output
7Json,
8/// CSV format for data processing
9Csv,
10/// Plain text without formatting for scripting
11Plain,
12}