[][src]Module bve::parse::kvp

Generic parser for key-value pair format. Not quite toml, not quite INI.

No frills format. Does not deal with casing, comments, etc. That must be dealt with ahead of time. This just deserializes the file as is. However whitespace is trimmed off the edges of values

There may be arbitrary duplicates.

The first section before a section header is always the unnamed section None. This differs from an empty section name Some("")

value1
key1 = some_value

[section1]
value
key = value
key = value

Structs

KVPField
KVPFile
KVPGenericWarning
KVPSection
KVPSymbols

Enums

KVPGenericWarningKind
ValueData

Constants

ANIMATED_LIKE
DAT_LIKE

Traits

FromKVPFile
FromKVPSection
FromKVPValue

Functions

parse_kvp_file