Enum config_struct::Format[][src]

pub enum Format {
    Json,
    Ron,
    Toml,
    Yaml,
}

Represents an input markup format for a config file.

The variants that exist correspond to the features that have been enabled. For example, if the json-parsing feature is not enabled, then the Format::Json variant will not exist.

Variants

Methods

impl Format
[src]

Trait Implementations

impl Debug for Format
[src]

Formats the value using the given formatter. Read more

impl Clone for Format
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Format
[src]

Auto Trait Implementations

impl Send for Format

impl Sync for Format