Type Alias ConfigItem

Source
pub type ConfigItem = Item;
Expand description

Config value or table node.

Aliased Type§

pub enum ConfigItem {
    None,
    Value(Value),
    Table(Table),
    ArrayOfTables(ArrayOfTables),
}

Variants§

§

None

Type representing none.

§

Value(Value)

Type representing value.

§

Table(Table)

Type representing table.

§

ArrayOfTables(ArrayOfTables)

Type representing array of tables.