Enum slr_config::ConfigElementKind [] [src]

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

The kind of the configuration element.

Variants

Value(String)

A simple value, containing a string.

Table(BTreeMap<StringConfigElement>)

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

Array(Vec<ConfigElement>)

An array of configuration elements.

Trait Implementations

impl Clone for ConfigElementKind
[src]

fn clone(&self) -> ConfigElementKind

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more