1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#[derive(strum::Display, strum::EnumString, PartialEq, Eq, Debug, Clone)]
pub enum FormatName {
    //
    #[strum(serialize = "JSON")]
    Json,
    #[strum(serialize = "JSONStrings")]
    JsonStrings,
    #[strum(serialize = "JSONCompact")]
    JsonCompact,
    #[strum(serialize = "JSONCompactStrings")]
    JsonCompactStrings,
    //
    #[strum(serialize = "TSV")]
    Tsv,
    #[strum(serialize = "TSVRaw")]
    TsvRaw,
    #[strum(serialize = "TSVWithNames")]
    TsvWithNames,
    #[strum(serialize = "TSVWithNamesAndTypes")]
    TsvWithNamesAndTypes,
    //
    #[strum(serialize = "JSONEachRow")]
    JsonEachRow,
    #[strum(serialize = "JSONStringsEachRow")]
    JsonStringsEachRow,
    #[strum(serialize = "JSONCompactEachRow")]
    JsonCompactEachRow,
    #[strum(serialize = "JSONCompactStringsEachRow")]
    JsonCompactStringsEachRow,
    #[strum(serialize = "JSONEachRowWithProgress")]
    JsonEachRowWithProgress,
    #[strum(serialize = "JSONStringsEachRowWithProgress")]
    JsonStringsEachRowWithProgress,
    #[strum(serialize = "JSONCompactEachRowWithNamesAndTypes")]
    JsonCompactEachRowWithNamesAndTypes,
    #[strum(serialize = "JSONCompactStringsEachRowWithNamesAndTypes")]
    JsonCompactStringsEachRowWithNamesAndTypes,
}