Enum slr_config::ConfigElementKind [] [src]

pub enum ConfigElementKind {
    Value(String),
    Table(BTreeMap<String, ConfigElement>),
    Array(Vec<ConfigElement>),
}

The kind of the configuration element.

Variants

A simple value, containing a string.

A table, which is a mapping of strings to configuration elements.

An array of configuration elements.

Trait Implementations

impl Clone for ConfigElementKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more