Type Alias FileFormat

Source
pub type FileFormat = FileFormat;
Expand description

Allowed formats for the configuration files.

Note: Ini format is not supported.

Aliased Type§

enum FileFormat {
    Toml,
    Json,
    Yaml,
    Ini,
    Ron,
    Json5,
}

Variants§

§

Toml

TOML (parsed with toml)

§

Json

JSON (parsed with serde_json)

§

Yaml

YAML (parsed with yaml_rust)

§

Ini

INI (parsed with rust_ini)

§

Ron

RON (parsed with ron)

§

Json5

JSON5 (parsed with json5)