dataprof-core 0.8.0

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