Skip to main content

dataprof_core/
output.rs

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